summaryrefslogtreecommitdiff
path: root/src/libbasic/xattr-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libbasic/xattr-util.c')
-rw-r--r--src/libbasic/xattr-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libbasic/xattr-util.c b/src/libbasic/xattr-util.c
index 8d7f14f382..8256899eda 100644
--- a/src/libbasic/xattr-util.c
+++ b/src/libbasic/xattr-util.c
@@ -110,7 +110,7 @@ ssize_t fgetxattrat_fake(int dirfd, const char *filename, const char *attribute,
/* The kernel doesn't have a fgetxattrat() command, hence let's emulate one */
- fd = openat(dirfd, filename, O_RDONLY|O_CLOEXEC|O_NOCTTY|O_PATH|(flags & AT_SYMLINK_NOFOLLOW ? O_NOFOLLOW : 0));
+ fd = openat(dirfd, filename, O_CLOEXEC|O_PATH|(flags & AT_SYMLINK_NOFOLLOW ? O_NOFOLLOW : 0));
if (fd < 0)
return -errno;