aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2016-10-02 20:40:02 -0700
committerNikolaus Rath <Nikolaus@rath.org>2016-10-02 20:51:10 -0700
commit57089f1d553d206ae43b85060c2b03d9f9367a3c (patch)
treedec2b242ddb37967eb20941a8945a0af6d8c0668 /include/fuse.h
parente52c84d0745c6b7f13c01b5ffb986e2fba63fb38 (diff)
downloadlibfuse-57089f1d553d206ae43b85060c2b03d9f9367a3c.tar.gz
Edited comments for clarity.
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/include/fuse.h b/include/fuse.h
index c3fea2d..719623a 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -608,8 +608,7 @@ struct fuse_context {
* main() function.
*
* This function does the following:
- * - parses command line options (-d -s and -h)
- * - passes relevant mount options to the fuse_mount()
+ * - parses command line options
* - installs signal handlers for INT, HUP, TERM and PIPE
* - registers an exit handler to unmount the filesystem on program exit
* - creates a fuse handle
@@ -640,14 +639,13 @@ struct fuse_context {
/**
* Create a new FUSE filesystem.
*
- * Known arguments are defined in `struct fuse_opt fuse_lib_opts[]`,
+ * Known options are defined in `struct fuse_opt fuse_lib_opts[]`,
* `struct fuse_opt fuse_mount_opts[]`, and `struct fuse_opt
- * fuse_ll_opts[]`. If there are any unknown arguments, an error
- * message will be printed to stderr and the function will return
- * NULL.
+ * fuse_ll_opts[]`. If not all options are known, an error message is
+ * written to stderr and the function returns NULL.
*
- * If the --help or --version parameters are specified, the function
- * prints the requested information to stdout and returns NULL.
+ * If the --help option is specified, the function writes a help text
+ * to stdout and returns NULL.
*
* @param args argument vector
* @param op the filesystem operations