fix documentation for opendir in fuse_operations

the filehandle from opendir is passed to releasedir - there is no
closedir function in fuse_operations
This commit is contained in:
Carl Edquist 2018-05-22 17:04:07 -05:00 committed by Nikolaus Rath
parent c2d0e65057
commit c17f2c6823

View File

@ -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
*/