[libvirt] [PATCH] conf:Fix a copy paste error

Alex Jia ajia at redhat.com
Fri Jul 26 09:19:16 UTC 2013


Signed-off-by: Alex Jia <ajia at redhat.com>
---
 src/conf/domain_conf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index 10cb7f6..0e74039 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -5153,7 +5153,7 @@ virDomainDiskDefParseXML(virDomainXMLOptionPtr xmlopt,
                        xmlStrEqual(cur->name, BAD_CAST "product")) {
                 product = (char *)xmlNodeGetContent(cur);
 
-                if (strlen(vendor) > PRODUCT_LEN) {
+                if (strlen(product) > PRODUCT_LEN) {
                     virReportError(VIR_ERR_XML_ERROR, "%s",
                                    _("disk product is more than 16 characters"));
                     goto error;
-- 
1.8.3.1




More information about the libvir-list mailing list