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:
Chen Hanxiao 2013-11-07 11:31:32 +08:00 committed by Michal Privoznik
parent 5ac7f07860
commit 4bcb74d03f

View File

@ -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;
}