* src/virsh.c: Richard W.M. Jones pointed out a missing option

in getopt_long()
Daniel
This commit is contained in:
Daniel Veillard
2007-01-26 11:49:01 +00:00
parent f873796e20
commit 079dc77af6
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -2606,7 +2606,7 @@ vshParseArgv(vshControl * ctl, int argc, char **argv)
end = end ? : argc;
/* standard (non-command) options */
while ((arg = getopt_long(end, argv, "d:hqtv", opt, &idx)) != -1) {
while ((arg = getopt_long(end, argv, "d:hqtcv", opt, &idx)) != -1) {
switch (arg) {
case 'd':
ctl->debug = atoi(optarg);