mirror of https://gitee.com/openkylin/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
This commit is contained in:
parent
fac97c65c1
commit
10713b1b98
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue