File libvirt-conf-Fix-typo-in-error-message-in-ABI-stability-check.patch of Package libvirt
From c98155dae0c72583c4d7a3570f2fb1a44a11dbd7 Mon Sep 17 00:00:00 2001
Message-Id: <c98155dae0c72583c4d7a3570f2fb1a44a11dbd7@dist-git>
From: Peter Krempa <pkrempa@redhat.com>
Date: Thu, 10 Apr 2014 18:23:08 +0200
Subject: [PATCH] conf: Fix typo in error message in ABI stability check
https://bugzilla.redhat.com/show_bug.cgi?id=961655
s/vpu/vCPU/
(cherry picked from commit 353871b22a16efd792c604eb8755d4c3e20e1062)
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
---
src/conf/domain_conf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index e6c8f55..035a0a5 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -11514,13 +11514,13 @@ bool 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);
goto cleanup;
}
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);
goto cleanup;
}
--
1.9.2