diff options
-rw-r--r-- | lib/fuse_lowlevel.c | 6 | ||||
-rw-r--r-- | lib/mount_bsd.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 2018c94..0bd6c99 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -919,11 +919,11 @@ static int fuse_ll_opt_proc(void *data, const char *arg, int key, struct fuse_args *outargs) { (void) data; (void) outargs; - + switch (key) { case KEY_HELP: break; - + case KEY_VERSION: fuse_ll_version(); break; @@ -931,7 +931,7 @@ static int fuse_ll_opt_proc(void *data, const char *arg, int key, default: fprintf(stderr, "fuse: unknown option `%s'\n", arg); } - + return -1; } diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 9e340c9..b0f2e35 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -118,7 +118,7 @@ static void mount_help(void) } static void mount_version(void) -{ +{ system(FUSERMOUNT_PROG " --version"); } |