From: Nikolaus Rath Date: Wed, 5 Oct 2016 02:40:06 +0000 (-0700) Subject: fuse_mount_help(): clarify that listed options are FUSE specific X-Git-Tag: fuse-3.0.0rc1~90 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=595f7c39069786981b2441bf8f369bcf833a2320;p=qemu-gpiodev%2Flibfuse.git fuse_mount_help(): clarify that listed options are FUSE specific We also accept a number of mount options that are common to all file systems (nosuid, nodev, ro, etc). --- diff --git a/lib/mount.c b/lib/mount.c index 5c892f6..386260c 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -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" diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 4703d94..bc3ed89 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -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);