qemu: fix typo in spice migration code

This typo caused XPath returning improper value and thus not
working spice after migration.
This commit is contained in:
Michal Privoznik 2011-05-18 11:57:07 +02:00
parent 42af244347
commit 45b28f7c4f
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ qemuMigrationCookieGraphicsXMLParse(xmlXPathContextPtr ctxt)
goto error;
}
/* Optional */
grap->tlsSubject = virXPathString("string(./graphics/cert[ info='subject']/@value)", ctxt);
grap->tlsSubject = virXPathString("string(./graphics/cert[@info='subject']/@value)", ctxt);
return grap;