aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2018-07-04 19:40:20 +0100
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2018-07-04 19:52:32 +0100
commitdb165f59f2cbcd0ce1c92beac9536a4a4b4b894a (patch)
tree9312c736677e628d7d1103cd659d40521b506161
parentedb0c09bbe18e04e45c49fdbda29710e167b31b9 (diff)
Document that access() is also called on chdir().
Source: Miklos Szeredi on fuse-devel, Wednesday, 4 July 2018 15:29.
-rw-r--r--include/fuse_lowlevel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index 047b437..6528e87 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -858,9 +858,9 @@ struct fuse_lowlevel_ops {
/**
* Check file access permissions
*
- * This will be called for the access() system call. If the
- * 'default_permissions' mount option is given, this method is not
- * called.
+ * This will be called for the access() and chdir() system
+ * calls. If the 'default_permissions' mount option is given,
+ * this method is not called.
*
* This method is not called under Linux kernel versions 2.4.x
*