mirror of
https://github.com/libvirt/libvirt.git
synced 2026-08-03 01:49:24 -05:00
* src/virsh.c: Richard W.M. Jones pointed out a missing option
in getopt_long() Daniel
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user