diff options
author | Daniel Veillard <veillard@redhat.com> | 2007-05-03 16:03:02 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2007-05-03 16:03:02 +0000 |
commit | 3ac6e102da8c82d1710539ff5768dab0accd82ff (patch) | |
tree | 0eee1daae2211b2349f10ec788d2ea3521e39084 /src | |
parent | Thu May 3 15:03:00 BST 2007 Richard Jones <rjones@redhat.com> (diff) | |
download | libvirt-3ac6e102da8c82d1710539ff5768dab0accd82ff.tar.gz libvirt-3ac6e102da8c82d1710539ff5768dab0accd82ff.tar.bz2 libvirt-3ac6e102da8c82d1710539ff5768dab0accd82ff.zip |
* src/virsh.c: fix help for dumpxml and net-dumpxml commands
based on Chris Wright feedback
Daniel
Diffstat (limited to 'src')
-rw-r--r-- | src/virsh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/virsh.c b/src/virsh.c index b33981a8e..2dfe19594 100644 --- a/src/virsh.c +++ b/src/virsh.c @@ -1592,7 +1592,7 @@ cmdCapabilities (vshControl * ctl, vshCmd * cmd ATTRIBUTE_UNUSED) * "dumpxml" command */ static vshCmdInfo info_dumpxml[] = { - {"syntax", "dumpxml <name>"}, + {"syntax", "dumpxml <domain>"}, {"help", gettext_noop("domain information in XML")}, {"desc", gettext_noop("Output the domain information as an XML dump to stdout.")}, {NULL, NULL} @@ -1934,7 +1934,7 @@ cmdNetworkDestroy(vshControl * ctl, vshCmd * cmd) * "net-dumpxml" command */ static vshCmdInfo info_network_dumpxml[] = { - {"syntax", "net-dumpxml <name>"}, + {"syntax", "net-dumpxml <network>"}, {"help", gettext_noop("network information in XML")}, {"desc", gettext_noop("Output the network information as an XML dump to stdout.")}, {NULL, NULL} |