fix visrh "save" cmd

This commit is contained in:
Karel Zak 2006-02-03 14:49:41 +00:00
parent 7871d455b3
commit 17202ea686
2 changed files with 5 additions and 1 deletions

View File

@ -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

View 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 }
};