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/fuse_lowlevel.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/fuse_lowlevel.c')
-rwxr-xr-x | lib/fuse_lowlevel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 43539da..8682c31 100755 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2639,6 +2639,7 @@ static void fuse_ll_version(void) static void fuse_ll_help(void) { printf( +"Low-level options\n" " -o max_write=N set maximum size of write requests\n" " -o max_readahead=N set maximum readahead\n" " -o max_background=N set number of maximum background requests\n" @@ -2658,8 +2659,7 @@ static void fuse_ll_help(void) " -o [no_]async_dio asynchronous direct I/O\n" " -o [no_]writeback_cache asynchronous, buffered writes\n" " -o time_gran=N time granularity in nsec\n" -" -o clone_fd clone fuse device file descriptors\n" -); +" -o clone_fd clone fuse device file descriptors\n\n"); } static int fuse_ll_opt_proc(void *data, const char *arg, int key, |