1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-26 14:03:49 +03:00

* 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

View File

@ -1,3 +1,8 @@
Fri Jan 26 12:48:13 CET 2007 Daniel Veillard <veillard@redhat.com>
* src/virsh.c: Richard W.M. Jones pointed out a missing option
in getopt_long()
Fri Jan 26 12:09:49 CET 2007 Daniel Veillard <veillard@redhat.com>
* autogen.sh: applied patch from Richard W.M. Jones to not

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);