diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:11:38 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:11:38 +0000 |
| commit | e3c2e7dccd705f01b5cbea002d544c6dc0f31e23 (patch) | |
| tree | 87de5783467bc0c873058ed2986ce3127e4214a3 | |
| parent | c9304be702ba5ffbbce3ac57f77cbeb865808e38 (diff) | |
| download | lasso-e3c2e7dccd705f01b5cbea002d544c6dc0f31e23.tar.gz lasso-e3c2e7dccd705f01b5cbea002d544c6dc0f31e23.tar.xz lasso-e3c2e7dccd705f01b5cbea002d544c6dc0f31e23.zip | |
* lasso/xml/xml.c: add support for dgme:Status node.
| -rw-r--r-- | lasso/xml/xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |
