aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_lowlevel.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-11-22 15:15:05 -0800
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-11-22 15:15:05 -0800
commite16fdc06d7473f00499b6b03fb7bd06259a22135 (patch)
tree7f2ccdd78f0190b0df5ba37d1c12f340e21c70d8 /lib/fuse_lowlevel.c
parent3296ad988ddb59eb7bbac21b9f67d60cf38ca6bf (diff)
Add support for FUSE_POSIX_ACL
Fixes #117.
Diffstat (limited to 'lib/fuse_lowlevel.c')
-rw-r--r--lib/fuse_lowlevel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index c7e3ebf..3941c7f 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -1877,6 +1877,8 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
se->conn.capable |= FUSE_CAP_NO_OPEN_SUPPORT;
if (arg->flags & FUSE_PARALLEL_DIROPS)
se->conn.capable |= FUSE_CAP_PARALLEL_DIROPS;
+ if (arg->flags & FUSE_POSIX_ACL)
+ se->conn.capable |= FUSE_CAP_POSIX_ACL;
} else {
se->conn.max_readahead = 0;
}