summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorManuel Bentele2020-10-30 16:08:57 +0100
committerManuel Bentele2020-10-30 16:08:57 +0100
commit8def22281128a0f63c518ae2d8f9a72ba61000bf (patch)
tree8702ea6997e62bbd6ea447a05ef0ebf2430a6eee /src
parent[CLIENT] add documentation for adding/removing dnbd3-server to help (diff)
downloaddnbd3-8def22281128a0f63c518ae2d8f9a72ba61000bf.tar.gz
dnbd3-8def22281128a0f63c518ae2d8f9a72ba61000bf.tar.xz
dnbd3-8def22281128a0f63c518ae2d8f9a72ba61000bf.zip
[CLIENT] format output of program help text
Diffstat (limited to 'src')
-rw-r--r--src/client/client.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/client.c b/src/client/client.c
index 81d408b..c309551 100644
--- a/src/client/client.c
+++ b/src/client/client.c
@@ -660,10 +660,10 @@ static int dnbd3_daemon_send(int argc, char **argv)
static void dnbd3_print_help(char *argv_0)
{
- printf( "Version: %s\n", DNBD3_VERSION );
- printf( "\nUsage: %s\n"
- "\t-h <host> -i <image name> [-r <rid>] -d <device> [-a <KB>] || -c -d <device>\n\n", argv_0 );
- printf( "Start the DNBD3 client.\n" );
+ printf( "Version: %s\n\n", DNBD3_VERSION );
+ printf( "Usage: %s\n", argv_0 );
+ printf( " -h <host> -i <image name> [-r <rid>] -d <device> [-a <KB>] || -c -d <device>\n\n" );
+ printf( "Start the DNBD3 client.\n\n" );
//printf("-f or --file \t\t Configuration file (default /etc/dnbd3-client.conf)\n");
printf( "-h or --host \t\t Host running dnbd3-server.\n" );
printf( "-i or --image \t\t Image name of exported image.\n" );
@@ -677,10 +677,10 @@ static void dnbd3_print_help(char *argv_0)
printf( "-R or --remove \t\t Remove given dnbd3-server on device.\n");
printf( "-H or --help \t\t Show this help text and quit.\n" );
printf( "-V or --version \t Show version and quit.\n\n" );
- printf( "\t--daemon \t Run as helper daemon\n" );
- printf( "\t--kill \t Kill running helper daemon\n" );
+ printf( " --daemon \t\t Run as helper daemon\n" );
+ printf( " --kill \t\t Kill running helper daemon\n\n" );
printf( "The helper daemon makes it possible for normal users to connect dnbd3 devices.\n" );
- printf( "The client binary needs to be a setuid program for this to work!\n\n" );
+ printf( "The client binary needs to be a setuid program for this to work!\n" );
}
void dnbd3_print_version()