diff --git a/ChangeLog b/ChangeLog index b9fd2cefe5..e72c09d4be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 3 15:47:32 CET 2006 Karel Zak + + * src/virsh.c: fix order of the save command options + Tue Jan 31 19:12:19 CET 2006 Daniel Veillard * configure.in docs/examples/*: starting to add examples. the XSLT diff --git a/src/virsh.c b/src/virsh.c index 673fff234f..986ce12f35 100644 --- a/src/virsh.c +++ b/src/virsh.c @@ -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 } };