From: Justin Clift Date: Mon, 8 Nov 2010 14:32:04 +0000 (+1100) Subject: virsh: fix incorrect help text mentioning non-existent network 'id' X-Git-Tag: v0.8.6~164 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c690cf831dcf8ec5d2452556ae249f60a005e8e7;p=thirdparty%2Flibvirt.git virsh: fix incorrect help text mentioning non-existent network 'id' --- diff --git a/tools/virsh.c b/tools/virsh.c index e7047999ab..2bbae9ba17 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -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} };