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

Martin Kletzander mkletzan at redhat.com
Fri Jul 26 09:33:58 UTC 2013


On 07/26/2013 11:19 AM, Alex Jia wrote:
> 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;
> 

ACKed and pushed,

Martin




More information about the libvir-list mailing list