From: Lin Ma Date: Fri, 11 Sep 2020 07:06:17 +0000 (+0800) Subject: virsh: pool-list: options --all and --inactive are mutually exclusive X-Git-Tag: v6.8.0-rc1~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1619c87eea3c1dc60cca7b4cc1f35a6724db2ec7;p=thirdparty%2Flibvirt.git virsh: pool-list: options --all and --inactive are mutually exclusive Signed-off-by: Lin Ma Reviewed-by: Ján Tomko Signed-off-by: Ján Tomko --- diff --git a/tools/virsh-pool.c b/tools/virsh-pool.c index 9fac590ec3..634e9ac8cd 100644 --- a/tools/virsh-pool.c +++ b/tools/virsh-pool.c @@ -1146,6 +1146,8 @@ cmdPoolList(vshControl *ctl, const vshCmd *cmd G_GNUC_UNUSED) inactive = vshCommandOptBool(cmd, "inactive"); all = vshCommandOptBool(cmd, "all"); + VSH_EXCLUSIVE_OPTIONS_VAR(all, inactive); + if (inactive) flags = VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE;