mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
virDomainObjGetOneDefState: Fix error message
It looks like the error message was copied from virsh, because that's where we have @ctl. Nevertheless, it's @flags which is invalid, not @ctl. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
05d4323989
commit
93ef9cf21d
@ -3417,12 +3417,13 @@ virDomainObjGetOneDefState(virDomainObjPtr vm,
|
||||
unsigned int flags,
|
||||
bool *live)
|
||||
{
|
||||
if (flags & VIR_DOMAIN_AFFECT_LIVE && flags & VIR_DOMAIN_AFFECT_CONFIG) {
|
||||
virReportInvalidArg(ctl, "%s",
|
||||
_("Flags 'VIR_DOMAIN_AFFECT_LIVE' and "
|
||||
"'VIR_DOMAIN_AFFECT_CONFIG' are mutually "
|
||||
"exclusive"));
|
||||
return NULL;
|
||||
if (flags & VIR_DOMAIN_AFFECT_LIVE &&
|
||||
flags & VIR_DOMAIN_AFFECT_CONFIG) {
|
||||
virReportInvalidArg(flags, "%s",
|
||||
_("Flags 'VIR_DOMAIN_AFFECT_LIVE' and "
|
||||
"'VIR_DOMAIN_AFFECT_CONFIG' are mutually "
|
||||
"exclusive"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (virDomainObjUpdateModificationImpact(vm, &flags) < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user