diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2005-05-02 10:17:57 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2005-05-02 10:17:57 +0000 |
| commit | e7f992bbb92b0cfcf49358416fc799758e09504f (patch) | |
| tree | c08f967955880f19c422bcc0cd156c7d0134be90 | |
| parent | 892726542eca6c62687e0daf85ec4f0eaa56df0f (diff) | |
| download | lasso-e7f992bbb92b0cfcf49358416fc799758e09504f.tar.gz lasso-e7f992bbb92b0cfcf49358416fc799758e09504f.tar.xz lasso-e7f992bbb92b0cfcf49358416fc799758e09504f.zip | |
Added process of Wsse prefix in lasso_node_new_from_xmlNode().
| -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 f300b20d..6ed28bb9 100644 --- a/lasso/xml/xml.c +++ b/lasso/xml/xml.c @@ -738,6 +738,8 @@ lasso_node_new_from_xmlNode(xmlNode *xmlnode) prefix = "Saml"; if (strcmp(xmlnode->ns->href, LASSO_SAML_PROTOCOL_HREF) == 0) prefix = "Samlp"; + if (strcmp(xmlnode->ns->href, LASSO_WSSE_HREF) == 0) + prefix = "Wsse"; /* XXX: new Dst namespaces can be added dynamically; they should not * be hardcoded here |
