]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virsh: fix incorrect help text mentioning non-existent network 'id'
authorJustin Clift <jclift@redhat.com>
Mon, 8 Nov 2010 14:32:04 +0000 (01:32 +1100)
committerJustin Clift <jclift@redhat.com>
Mon, 8 Nov 2010 14:35:27 +0000 (01:35 +1100)
tools/virsh.c

index e7047999ab7b45334ed316def17612bf95dc436c..2bbae9ba176532354a48e240b622ac6547581850 100644 (file)
@@ -3650,7 +3650,7 @@ static const vshCmdInfo info_network_destroy[] = {
 };
 
 static const vshCmdOptDef opts_network_destroy[] = {
-    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name, id or uuid")},
+    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
     {NULL, 0, 0, NULL}
 };
 
@@ -3689,7 +3689,7 @@ static const vshCmdInfo info_network_dumpxml[] = {
 };
 
 static const vshCmdOptDef opts_network_dumpxml[] = {
-    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name, id or uuid")},
+    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
     {NULL, 0, 0, NULL}
 };
 
@@ -9329,7 +9329,7 @@ static const vshCmdInfo info_network_edit[] = {
 };
 
 static const vshCmdOptDef opts_network_edit[] = {
-    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name, id or uuid")},
+    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
     {NULL, 0, 0, NULL}
 };