summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:10:42 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:10:42 +0000
commit605b1b38e64bb88be0cf3132ac7d53ddbc1153ab (patch)
tree0e785a5fc5b6bf87e8c40111a793e327ad870b48
parenta28637d0917f30375a282e76190900db7ff4dd84 (diff)
* lasso/id-wsf/wsf_profile.c: fix wrong namespace in a call to xmlSecFindNode
-rw-r--r--lasso/id-wsf/wsf_profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/id-wsf/wsf_profile.c b/lasso/id-wsf/wsf_profile.c
index 6103e4bb..24177bb4 100644
--- a/lasso/id-wsf/wsf_profile.c
+++ b/lasso/id-wsf/wsf_profile.c
@@ -1166,7 +1166,7 @@ lasso_wsf_profile_add_saml_signature(LassoWsfProfile *wsf_profile, xmlDoc *doc)
header = xmlSecSoap11GetHeader(envelope);
provider = xmlSecFindNode(header, (xmlChar*) "Provider", (xmlChar*) LASSO_SOAP_BINDING_HREF);
correlation = xmlSecFindNode(header, (xmlChar*) "Correlation", (xmlChar*) LASSO_SOAP_BINDING_HREF);
- provider = xmlSecFindNode(header, (xmlChar*) "UserInteraction", (xmlChar*) LASSO_SOAP_BINDING_HREF);
+ provider = xmlSecFindNode(header, (xmlChar*) "UserInteraction", (xmlChar*) LASSO_IS_HREF);
body = xmlSecSoap11GetBody(envelope);
xmlSecAddIDs(doc, envelope, ids);
goto_exit_if_fail(header != NULL, LASSO_XML_ERROR_NODE_NOT_FOUND);