diff --git a/ChangeLog b/ChangeLog index f09e317599..6845ec172f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 13 19:04:45 IST 2009 Mark McLoughlin + + * src/xml.c: fix some error strings + Fri Feb 13 19:04:22 IST 2009 Mark McLoughlin * src/xml.h: kill some non-existent functions diff --git a/src/xml.c b/src/xml.c index ad77ecae2f..9c27a106d7 100644 --- a/src/xml.c +++ b/src/xml.c @@ -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;