Edited comments for clarity.
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 3 Oct 2016 03:40:02 +0000 (20:40 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 3 Oct 2016 03:51:10 +0000 (20:51 -0700)
include/fuse.h
include/fuse_lowlevel.h

index c3fea2df9286110e899d7384f88c5e5393b75f10..719623ab65978e73043928006549e8bb83cda306 100644 (file)
@@ -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
index f0f0e0b06c12a78327beb36b89939baa4a1c83ae..f90a052e385bb7608be84e3fde8bb33d463377e5 100644 (file)
@@ -1570,10 +1570,9 @@ int fuse_req_interrupted(fuse_req_t req);
  * Returns a session structure suitable for passing to
  * fuse_session_mount() and fuse_session_loop().
  *
- * Known arguments are defined in `struct fuse_opt fuse_ll_opts[]` and
- * `struct fuse_opt fuse_mount_opts[]`. If there are any unknown
- * arguments, an error message will be printed to stderr and the
- * function will return NULL.
+ * Known options are defined in `struct fuse_opt fuse_ll_opts[]` and
+ * `struct fuse_opt fuse_mount_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 requsted information to stdout and returns NULL.