]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
* src/virsh.c: Richard W.M. Jones pointed out a missing option
authorDaniel Veillard <veillard@redhat.com>
Fri, 26 Jan 2007 11:49:01 +0000 (11:49 +0000)
committerDaniel Veillard <veillard@redhat.com>
Fri, 26 Jan 2007 11:49:01 +0000 (11:49 +0000)
  in getopt_long()
Daniel

ChangeLog
src/virsh.c

index 1ebb6c755ae4d7e9691950cc76fe776b6d337c8a..2949a8c6251c3d15b51b124a4db8f3bac1595ce3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 469d79431da79b4c1d8f6999c8d65dba3929e091..62b864dbba9433ba4756bdd9fba8ce18c9cf2885 100644 (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);