From e3c2e7dccd705f01b5cbea002d544c6dc0f31e23 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 1 Aug 2008 14:11:38 +0000 Subject: * lasso/xml/xml.c: add support for dgme:Status node. --- lasso/xml/xml.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lasso/xml/xml.c b/lasso/xml/xml.c index 49eff095..7cff5042 100644 --- a/lasso/xml/xml.c +++ b/lasso/xml/xml.c @@ -1601,6 +1601,8 @@ lasso_node_new_from_xmlNode(xmlNode *xmlnode) prefix = "Utility"; else if (strcmp(prefix, "Sa") == 0 && strcmp((char*)xmlnode->name, "Status") == 0) prefix = "Utility"; + else if (strcmp(prefix, "DgmeMspEd") == 0 && strcmp((char*)xmlnode->name, "Status") == 0) + prefix = "Utility"; xsitype = xmlGetNsProp(xmlnode, (xmlChar*)"type", (xmlChar*)LASSO_XSI_HREF); if (xsitype) { -- cgit