aboutsummaryrefslogtreecommitdiff
path: root/example/notify_store_retrieve.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-15 19:46:57 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-15 19:46:57 -0700
commitb16650830d69cbe2d13e74c4318757c15f2c552f (patch)
treeeb2972d1d46aeed0bba411a02b8f523c7e21a8c2 /example/notify_store_retrieve.c
parentb46250c40e29a23d37fe8fdadd6ef0d4cfe8b897 (diff)
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.
Diffstat (limited to 'example/notify_store_retrieve.c')
-rw-r--r--example/notify_store_retrieve.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/example/notify_store_retrieve.c b/example/notify_store_retrieve.c
index 8cc6666..6c8678a 100644
--- a/example/notify_store_retrieve.c
+++ b/example/notify_store_retrieve.c
@@ -353,13 +353,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;
}