From: Ján Tomko Date: Tue, 8 Apr 2014 12:58:22 +0000 (+0200) Subject: Fix incorrect values in redirdev ABI check error X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=27fbfc2a17eb1fb19961d0f5cd95670dbcbf36b7;p=libvirt.git Fix incorrect values in redirdev ABI check error My commit c9123fb introduced this copy-and-paste error. --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 52bbf87157..1be942d1f4 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -14231,7 +14231,7 @@ virDomainDefCheckABIStability(virDomainDefPtr src, virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("Target domain redirected devices count %zu " "does not match source %zu"), - dst->nconsoles, src->nconsoles); + dst->nredirdevs, src->nredirdevs); goto error; }