From: Michal Privoznik Date: Thu, 30 Sep 2021 14:32:19 +0000 (+0200) Subject: virsh: Fix --nvram and --keep-nvram help strings X-Git-Tag: v7.9.0-rc1~269 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ad069001510666e1880ec788401518f6179bcd2;p=thirdparty%2Flibvirt.git virsh: Fix --nvram and --keep-nvram help strings The --nvram and --keep-nvram options of the undefine command can be used regardless of the domain status (the only consumer so far - qemuDomainUndefineFlags() doesn't care about the domain status). Yet, their corresponding help strings say something about inactive domains while manpage says nothing. Remove the reference to domain state. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2007659 Signed-off-by: Michal Privoznik Reviewed-by: Andrea Bolognani --- diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c index f43234f223..0391bdeb30 100644 --- a/tools/virsh-domain.c +++ b/tools/virsh-domain.c @@ -3595,11 +3595,11 @@ static const vshCmdOptDef opts_undefine[] = { }, {.name = "nvram", .type = VSH_OT_BOOL, - .help = N_("remove nvram file, if inactive") + .help = N_("remove nvram file") }, {.name = "keep-nvram", .type = VSH_OT_BOOL, - .help = N_("keep nvram file, if inactive") + .help = N_("keep nvram file") }, {.name = NULL} };