From b16650830d69cbe2d13e74c4318757c15f2c552f Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sat, 15 Oct 2016 19:46:57 -0700 Subject: Make --help output more suitable for end-user We now only list options that are potentially useful for an end-user (and unlikely to accidentally break a file system). The full list of FUSE options has been moved to the documentation of the fuse_new() and fuse_session_new() functions. --- example/notify_inval_inode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'example/notify_inval_inode.c') diff --git a/example/notify_inval_inode.c b/example/notify_inval_inode.c index 078107e..934be60 100644 --- a/example/notify_inval_inode.c +++ b/example/notify_inval_inode.c @@ -310,13 +310,12 @@ int main(int argc, char *argv[]) { if (opts.show_help) { show_help(argv[0]); fuse_cmdline_help(); - fuse_mount_help(); + fuse_lowlevel_help(); ret = 0; goto err_out1; } else if (opts.show_version) { printf("FUSE library version %s\n", fuse_pkgversion()); fuse_lowlevel_version(); - fuse_mount_version(); ret = 0; goto err_out1; } -- cgit v1.2.3