Skip to content

Commit

Permalink
Fix xmlns for LogoutRequest SessionIndex element
Browse files Browse the repository at this point in the history
  • Loading branch information
megalord committed Jul 29, 2019
1 parent 2131d5f commit 86b9f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xml.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ xmlChar* saml_doc_session_index(xmlDoc* doc) {
}

if (xmlStrEqual(node->name, (xmlChar*)"LogoutRequest") == 1) {
node = xmlSecFindNode(node, (xmlChar*)"SessionIndex", xmlSecDSigNs);
node = xmlSecFindNode(node, (xmlChar*)"SessionIndex", (xmlChar*)SAML_XMLNS_PROTOCOL);
if (node == NULL) {
return NULL;
}
Expand Down

0 comments on commit 86b9f29

Please sign in to comment.