From: Michal Privoznik Date: Thu, 10 Feb 2011 10:50:10 +0000 (+0000) Subject: Fix typo in parsing of spice 'auth' data X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=10713b1b98268a6eb05ba0912c1f4643c25f2564;p=libvirt.git Fix typo in parsing of spice 'auth' data A typo s/spice/vnc/ caused parsing of the spice 'auth' data to write into the wrong part of the struct, blowing away other unrelated data. * src/conf/domain_conf.c: s/vnc/spice/ in parsing spice auth --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 7c1fb4767d..59adf36979 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -3873,7 +3873,7 @@ virDomainGraphicsDefParseXML(xmlNodePtr node, int flags) { def->data.spice.listenAddr = virXMLPropString(node, "listen"); def->data.spice.keymap = virXMLPropString(node, "keymap"); - if (virDomainGraphicsAuthDefParseXML(node, &def->data.vnc.auth) < 0) + if (virDomainGraphicsAuthDefParseXML(node, &def->data.spice.auth) < 0) goto error; cur = node->children;