From: Jeff Cody Date: Fri, 25 Apr 2014 21:02:32 +0000 (-0400) Subject: block: fix qemu-img --help invocation X-Git-Tag: qemu-xen-4.6.0-rc1~480^2~30 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7db1689c35a6f7477c691c31232ec10725ba9dfe;p=qemu-xen.git block: fix qemu-img --help invocation This fixes a bug introduced in commit ac1307ab, that caused the '--help' option to not be recognized as a valid command, and not print any help. Signed-off-by: Jeff Cody Reviewed-by: Eric Blake Signed-off-by: Kevin Wolf --- diff --git a/qemu-img.c b/qemu-img.c index 968b4c8e83..d884324c8f 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -2789,6 +2789,12 @@ int main(int argc, char **argv) { const img_cmd_t *cmd; const char *cmdname; + int c; + int option_index = 0; + static const struct option long_options[] = { + {"help", no_argument, 0, 'h'}, + {0, 0, 0, 0} + }; #ifdef CONFIG_POSIX signal(SIGPIPE, SIG_IGN); @@ -2803,15 +2809,20 @@ int main(int argc, char **argv) error_exit("Not enough arguments"); } cmdname = argv[1]; - argc--; argv++; /* find the command */ for(cmd = img_cmds; cmd->name != NULL; cmd++) { if (!strcmp(cmdname, cmd->name)) { - return cmd->handler(argc, argv); + return cmd->handler(argc - 1, argv + 1); } } + c = getopt_long(argc, argv, "h", long_options, &option_index); + + if (c == 'h') { + help(); + } + /* not found */ error_exit("Command not found: %s", cmdname); }