Fix misc typos in domain XML handling

This commit is contained in:
Daniel P. Berrange 2008-07-25 16:25:11 +00:00
parent e8a84817d4
commit c5ecc66658
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Fri Jul 25 17:21:27 BST 2008 Daniel P. Berrange <berrange@redhat.com>
* src/domain_conf.c: Fix typos in comments, and the dummy
filename passed to xmlReadDoc (patch from Chris Lalancette)
Fri Jul 25 17:17:27 BST 2008 Daniel P. Berrange <berrange@redhat.com>
* src/xml.c: Remove now unused c-ctype.h include

View File

@ -1396,7 +1396,7 @@ static virDomainDefPtr virDomainDefParseXML(virConnectPtr conn,
}
def->id = -1;
/* Find out what type of QEMU virtualization to use */
/* Find out what type of virtualization to use */
if (!(tmp = virXPathString(conn, "string(./@type)", ctxt))) {
virDomainReportError(conn, VIR_ERR_INTERNAL_ERROR,
"%s", _("missing domain type attribute"));
@ -1762,7 +1762,7 @@ static virDomainDefPtr virDomainDefParseXML(virConnectPtr conn,
}
VIR_FREE(nodes);
/* analysis of the input devices */
/* analysis of the graphics devices */
if ((n = virXPathNodeSet(conn, "./devices/graphics", ctxt, &nodes)) < 0) {
virDomainReportError(conn, VIR_ERR_INTERNAL_ERROR,
"%s", _("cannot extract graphics devices"));
@ -1847,7 +1847,7 @@ virDomainDefPtr virDomainDefParseString(virConnectPtr conn,
xmlNodePtr root;
virDomainDefPtr def = NULL;
if (!(xml = xmlReadDoc(BAD_CAST xmlStr, "network.xml", NULL,
if (!(xml = xmlReadDoc(BAD_CAST xmlStr, "domain.xml", NULL,
XML_PARSE_NOENT | XML_PARSE_NONET |
XML_PARSE_NOERROR | XML_PARSE_NOWARNING))) {
virDomainReportError(conn, VIR_ERR_XML_ERROR, NULL);