summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Edquist <edquist@cs.wisc.edu>2018-05-22 17:04:07 -0500
committerNikolaus Rath <Nikolaus@rath.org>2018-05-24 16:01:37 +0100
commitc17f2c6823a21796678a228bfe4971719aced1e7 (patch)
treeb4b5213530e6fa206b39a1b018494b25ad9d9ab9
parentc2d0e65057aa3b0627ee06711f8a6408accee63c (diff)
downloadfuse-c17f2c6823a21796678a228bfe4971719aced1e7.tar.gz
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 911a676..04ab31b 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -274,7 +274,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.
*
* Introduced in version 2.3
*/