aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Carl Edquist <edquist@cs.wisc.edu>2018-05-22 17:04:07 -0500
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2018-05-24 16:01:27 +0100
commitcece24786e7d0a1cd2a2dc7b84ff54225d2b616f (patch)
tree513a62d89e41fd147198c5716fa5954cc9c71037
parentac06ce29f2f1e0e53fdaccee8dd755652e66b742 (diff)
fix documentation for opendir in fuse_operations
the filehandle from opendir is passed to releasedir - there is no closedir function in fuse_operations
-rw-r--r--include/fuse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 6f19967..40d5aea 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -528,7 +528,7 @@ struct fuse_operations {
* this method should check if opendir is permitted for this
* directory. Optionally opendir may also return an arbitrary
* filehandle in the fuse_file_info structure, which will be
- * passed to readdir, closedir and fsyncdir.
+ * passed to readdir, releasedir and fsyncdir.
*/
int (*opendir) (const char *, struct fuse_file_info *);