[cpp-sp] branch main updated: Fix output parameter name.
Codeberg
noreply at shibboleth.net
Tue Jun 2 12:50:55 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository cpp-sp.
View the commit online:
https://codeberg.org/Shibboleth/cpp-sp/commit/0c6e75c105d5e90b5aa81a93d48168bab389a79c
The following commit(s) were added to refs/heads/main by this push:
new 0c6e75c1 Fix output parameter name.
0c6e75c1 is described below
commit 0c6e75c105d5e90b5aa81a93d48168bab389a79c
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Tue Jun 2 08:50:22 2026 -0400
Fix output parameter name.
---
shibsp/handler/impl/LogoutConsumer.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shibsp/handler/impl/LogoutConsumer.cpp b/shibsp/handler/impl/LogoutConsumer.cpp
index 4b5f5100..283753d9 100644
--- a/shibsp/handler/impl/LogoutConsumer.cpp
+++ b/shibsp/handler/impl/LogoutConsumer.cpp
@@ -152,7 +152,7 @@ pair<bool,long> LogoutConsumer::run(SPRequest& request, bool isHandler) const
// Any token provided by the Hub call will be attached to that process.
// We won't notify, however, if a match was required but not achieved.
- bool effectiveMatch = !m_matchRequired || output["matches"].integer() == 1;
+ bool effectiveMatch = !m_matchRequired || output["matched"].integer() == 1;
if (m_matchRequired) {
request.debug("LogoutRequest %s active session", effectiveMatch ? "matched" : "did not match");
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list