aboutsummaryrefslogtreecommitdiff
path: root/include/fuse_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 04b378f..3da27c1 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -253,7 +253,7 @@ struct fuse_file_info {
#define FUSE_CAP_PARALLEL_DIROPS (1 << 18)
/**
- * Indicates support for POSIX ACL.
+ * Indicates support for POSIX ACLs.
*
* If this feature is enabled, the kernel will cache and have
* responsibility for enforcing ACLs. ACL will be stored as xattrs and
@@ -263,6 +263,10 @@ struct fuse_file_info {
* created. Note that this requires that the file system is able to
* parse and interpret the xattr representation of ACLs.
*
+ * Enabling this feature implicitly turns on the
+ * ``default_permissions`` mount option (even if it was not passed to
+ * mount(2)).
+ *
* This feature is disabled by default.
*/
#define FUSE_CAP_POSIX_ACL (1 << 19)