]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix incorrect values in redirdev ABI check error
authorJán Tomko <jtomko@redhat.com>
Tue, 8 Apr 2014 12:58:22 +0000 (14:58 +0200)
committerJán Tomko <jtomko@redhat.com>
Tue, 8 Apr 2014 13:08:20 +0000 (15:08 +0200)
My commit c9123fb introduced this copy-and-paste error.

src/conf/domain_conf.c

index 52bbf871574979174859a19cd40e29828aa10fc3..1be942d1f47a9dd52f7dfb0d995af6cc5aec7e60 100644 (file)
@@ -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;
     }