From: Carl Edquist Date: Tue, 22 May 2018 22:04:07 +0000 (-0500) Subject: fix documentation for opendir in fuse_operations X-Git-Tag: fuse-3.2.4~7 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cece24786e7d0a1cd2a2dc7b84ff54225d2b616f;p=qemu-gpiodev%2Flibfuse.git fix documentation for opendir in fuse_operations the filehandle from opendir is passed to releasedir - there is no closedir function in fuse_operations --- 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 *);