From: Chen Hanxiao Date: Thu, 7 Nov 2013 03:31:32 +0000 (+0800) Subject: conf: fix incorrect error log in virCPUDefIsEqual X-Git-Tag: v1.2.0-rc1~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bcb74d03fc2f719e5750d92b616402cc0cc371b;p=thirdparty%2Flibvirt.git conf: fix incorrect error log in virCPUDefIsEqual A copy-paste error. s/model/vendor id Signed-off-by: Chen Hanxiao --- diff --git a/src/conf/cpu_conf.c b/src/conf/cpu_conf.c index 5deb3251ad..c4917b8d5b 100644 --- a/src/conf/cpu_conf.c +++ b/src/conf/cpu_conf.c @@ -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; }