mirror of https://gitee.com/openkylin/libvirt.git
virsh: Fix help for net-port-delete
Apparently a copy/paste error. The net-port-delete help string was in fact from net-port-dumpxml. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1747826 Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
parent
6ecc9df89b
commit
7d5f0fda30
|
@ -1593,10 +1593,10 @@ cmdNetworkPortDumpXML(vshControl *ctl, const vshCmd *cmd)
|
||||||
*/
|
*/
|
||||||
static const vshCmdInfo info_network_port_delete[] = {
|
static const vshCmdInfo info_network_port_delete[] = {
|
||||||
{.name = "help",
|
{.name = "help",
|
||||||
.data = N_("network port information in XML")
|
.data = N_("delete the specified network port")
|
||||||
},
|
},
|
||||||
{.name = "desc",
|
{.name = "desc",
|
||||||
.data = N_("Output the network port information as an XML dump to stdout.")
|
.data = N_("Delete the specified network port.")
|
||||||
},
|
},
|
||||||
{.name = NULL}
|
{.name = NULL}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue