diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-02 20:42:33 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-02 20:51:15 -0700 |
commit | b4c3478b166b1ef982f5d50d9e6746a409e65a15 (patch) | |
tree | 07d63a0cd58086d093ba967c34d497e0fabbe1e6 /lib/mount_bsd.c | |
parent | 57089f1d553d206ae43b85060c2b03d9f9367a3c (diff) | |
download | libfuse-b4c3478b166b1ef982f5d50d9e6746a409e65a15.tar.gz |
Add section headings for --help output
Also, do not include "General options" in usage message.
Diffstat (limited to 'lib/mount_bsd.c')
-rw-r--r-- | lib/mount_bsd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 0d886b0..4dce8c4 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -95,7 +95,9 @@ static const struct fuse_opt fuse_mount_opts[] = { void fuse_mount_help(void) { - printf(" -o allow_root allow access to root\n"); + printf( +"Mount options:\n" +" -o allow_root allow access to root\n"); system(FUSERMOUNT_PROG " --help"); fputc('\n', stderr); } |