mirror of https://gitee.com/openkylin/libvirt.git
conf: fix incorrect error log in virCPUDefIsEqual
A copy-paste error. s/model/vendor id Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
This commit is contained in:
parent
5ac7f07860
commit
4bcb74d03f
|
@ -767,7 +767,7 @@ virCPUDefIsEqual(virCPUDefPtr src,
|
|||
|
||||
if (STRNEQ_NULLABLE(src->vendor_id, dst->vendor_id)) {
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("Target CPU model %s does not match source %s"),
|
||||
_("Target CPU vendor id %s does not match source %s"),
|
||||
NULLSTR(dst->vendor_id), NULLSTR(src->vendor_id));
|
||||
goto cleanup;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue