From: Peter Krempa Date: Fri, 10 May 2013 07:54:56 +0000 (+0200) Subject: conf: Fix typo in error message in ABI stability check X-Git-Tag: CVE-2013-1962~104 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=353871b22a16efd792c604eb8755d4c3e20e1062;p=thirdparty%2Flibvirt.git conf: Fix typo in error message in ABI stability check s/vpu/vCPU/ --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index b7e253e450..e0bd8aa47f 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -12596,13 +12596,13 @@ virDomainDefCheckABIStability(virDomainDefPtr src, if (src->vcpus != dst->vcpus) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, - _("Target domain vpu count %d does not match source %d"), + _("Target domain vCPU count %d does not match source %d"), dst->vcpus, src->vcpus); return false; } if (src->maxvcpus != dst->maxvcpus) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, - _("Target domain vpu max %d does not match source %d"), + _("Target domain vCPU max %d does not match source %d"), dst->maxvcpus, src->maxvcpus); return false; }