Fix some error strings in xml.c

Just some copy-and-paste mixups.
This commit is contained in:
Mark McLoughlin 2009-02-13 19:12:45 +00:00
parent c4602255c7
commit f6a5e8f785
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Fri Feb 13 19:04:45 IST 2009 Mark McLoughlin <markmc@redhat.com>
* src/xml.c: fix some error strings
Fri Feb 13 19:04:22 IST 2009 Mark McLoughlin <markmc@redhat.com>
* src/xml.h: kill some non-existent functions

View File

@ -140,7 +140,7 @@ virXPathLong(virConnectPtr conn,
if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
virXMLError(conn, VIR_ERR_INTERNAL_ERROR,
"%s", _("Invalid parameter to virXPathNumber()"));
"%s", _("Invalid parameter to virXPathLong()"));
return (-1);
}
relnode = ctxt->node;
@ -195,7 +195,7 @@ virXPathULong(virConnectPtr conn,
if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
virXMLError(conn, VIR_ERR_INTERNAL_ERROR,
"%s", _("Invalid parameter to virXPathNumber()"));
"%s", _("Invalid parameter to virXPathULong()"));
return (-1);
}
relnode = ctxt->node;