]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virsh: remove a badly placed line break in virsh -h output
authorJustin Clift <jclift@redhat.com>
Wed, 1 Dec 2010 13:25:09 +0000 (00:25 +1100)
committerJustin Clift <jclift@redhat.com>
Wed, 1 Dec 2010 13:28:10 +0000 (00:28 +1100)
The output was previously:

    -c | --connect <uri>    hypervisor connection URI
    -r | --readonly         connect readonly
    -d | --debug <num>      debug level [0-5]
    -h | --help             this help
    -q | --quiet            quiet mode
    -t | --timing           print timing information
    -l | --log <file>       output logging to file
    -v | --version[=short]  program version

    -V | --version=long     version and full options

(note the blank line between the --version types)

This patch removes the extra blank line.

tools/virsh.c

index 010e345df57fd9d734390e711509b90ace6106e0..73d09417dd11f505d0e20306f5b4a9c21539fff2 100644 (file)
@@ -11694,7 +11694,7 @@ vshUsage(void)
                       "    -q | --quiet            quiet mode\n"
                       "    -t | --timing           print timing information\n"
                       "    -l | --log <file>       output logging to file\n"
-                      "    -v | --version[=short]  program version\n\n"
+                      "    -v | --version[=short]  program version\n"
                       "    -V | --version=long     version and full options\n\n"
                       "  commands (non interactive mode):\n\n"), progname, progname);