]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
fix visrh "save" cmd
authorKarel Zak <kzak@redhat.com>
Fri, 3 Feb 2006 14:49:41 +0000 (14:49 +0000)
committerKarel Zak <kzak@redhat.com>
Fri, 3 Feb 2006 14:49:41 +0000 (14:49 +0000)
ChangeLog
src/virsh.c

index b9fd2cefe5a01f7f0e71d95bf95412118f438818..e72c09d4be4fb959f418196702a5aafe91a536e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Feb  3 15:47:32 CET 2006 Karel Zak <kzak@redhat.com>
+
+       * src/virsh.c: fix order of the save command options
+
 Tue Jan 31 19:12:19 CET 2006 Daniel Veillard <veillard@redhat.com>
 
        * configure.in docs/examples/*: starting to add examples. the XSLT
index 673fff234f5624cf17d9952ab5c50346ccc114cd..986ce12f356309671e67a670c21b33da00c87839 100644 (file)
@@ -394,8 +394,8 @@ static vshCmdInfo info_save[] = {
 };
 
 static vshCmdOptDef opts_save[] = {
-    { "file",    VSH_OT_DATA, VSH_OFLAG_REQ, "where to save the data" },
     { "domain",  VSH_OT_DATA, VSH_OFLAG_REQ, "domain name or id" },
+    { "file",    VSH_OT_DATA, VSH_OFLAG_REQ, "where to save the data" },
     { NULL, 0, 0, NULL }
 };