From 199fc0f8335af5487edb243c05a662b60e311463 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 16 Oct 2016 14:28:47 -0700 Subject: 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). --- lib/mount_bsd.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lib/mount_bsd.c') diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index c39414b..9cf9dfa 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -93,13 +93,6 @@ static const struct fuse_opt fuse_mount_opts[] = { FUSE_OPT_END }; -void fuse_mount_help(void) -{ - printf( -" -o allow_root allow access to root\n"); - system(FUSERMOUNT_PROG " --help"); -} - void fuse_mount_version(void) { system(FUSERMOUNT_PROG " --version"); -- cgit v1.2.3