From 225c12aebf2d2f27e1d032d6b2149c7bb1d63506 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 9 Oct 2016 17:08:29 -0700 Subject: fuse_parse_cmdline(): do not print help/version text The current behavior makes it difficult to add help for additional options. With the change, this becomes a lot easier. --- example/hello_ll.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'example/hello_ll.c') diff --git a/example/hello_ll.c b/example/hello_ll.c index 014b8ca..b830cb2 100644 --- a/example/hello_ll.c +++ b/example/hello_ll.c @@ -192,8 +192,18 @@ int main(int argc, char *argv[]) if (fuse_parse_cmdline(&args, &opts) != 0) return 1; - if (opts.show_help || opts.show_version) { - ret = 1; + if (opts.show_help) { + printf("usage: %s [options] \n\n", argv[0]); + fuse_cmdline_help(); + fuse_lowlevel_help(); + fuse_mount_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