fuse_mount_help(): clarify that listed options are FUSE specific
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 5 Oct 2016 02:40:06 +0000 (19:40 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 5 Oct 2016 02:40:06 +0000 (19:40 -0700)
We also accept a number of mount options that are common to
all  file systems (nosuid, nodev, ro, etc).

lib/mount.c
lib/mount_bsd.c

index 5c892f64bbbb83d094a6c2ce58e5f850eca2c4c1..386260cd7d2e5dddde84d8ad8aa10f64b5a1c99e 100644 (file)
@@ -122,7 +122,7 @@ static const struct fuse_opt fuse_mount_opts[] = {
 void fuse_mount_help(void)
 {
        printf(
-"Mount options:\n"
+"FUSE-specific mount options:\n"
 "    -o allow_other         allow access to other users\n"
 "    -o allow_root          allow access to root\n"
 "    -o auto_unmount        auto unmount on process termination\n"
index 4703d94bfe667e191e0d981fd559d63301c40cf1..bc3ed89fdc3a3d110f6d83c6ab8e78f96354357c 100644 (file)
@@ -98,7 +98,7 @@ static const struct fuse_opt fuse_mount_opts[] = {
 void fuse_mount_help(void)
 {
        printf(
-"Mount options:\n"
+"FUSE-specific mount options:\n"
 "    -o allow_root          allow access to root\n");
        system(FUSERMOUNT_PROG " --help");
        fputc('\n', stderr);