aboutsummaryrefslogtreecommitdiff
path: root/lib/helper.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-16 14:28:47 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-16 14:28:47 -0700
commit199fc0f8335af5487edb243c05a662b60e311463 (patch)
tree3e11321c3c17b145f54410b8543fe64284d3ca23 /lib/helper.c
parentc8429618ad7dbe9e3c9345db10b3a156ca9dcf72 (diff)
Inlined fuse_mount_help() into fuse_lowlevel_help().
Both the BSD and Linux implementation actually accept mostly the same FUSE-specific mount options. Up to now, the BSD help function appended the output of ``mount_fusefs --help``, but looking at http://www.unix.com/man-page/freebsd/8/mount_fusefs/ this is likely more confusing than helpful (since the user is not actually invoking mount_fusefs directly, most of the options don't make sense).
Diffstat (limited to 'lib/helper.c')
-rw-r--r--lib/helper.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/helper.c b/lib/helper.c
index 6d72802..cc1002d 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -258,7 +258,6 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
if (opts.show_version) {
printf("FUSE library version %s\n", PACKAGE_VERSION);
fuse_lowlevel_version();
- fuse_mount_version();
res = 0;
goto out1;
}