file_utils: remove O_NOFOLLOW from open_at() defaults

parent 6fc8a0dd
......@@ -639,7 +639,7 @@ int open_at(int dfd, const char *path, unsigned int o_flags,
if (errno != ENOSYS)
return -errno;
return openat(dfd, path, O_NOFOLLOW | o_flags, mode);
return openat(dfd, path, o_flags, mode);
}
int fd_make_nonblocking(int fd)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment