[cpp-sp] branch main updated: Skip unnecessary workaround.
Scott Cantor
cantor.2 at osu.edu
Wed Oct 29 14:03:25 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository cpp-sp.
View the commit online:
https://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=e9d6a74733c0de0316acdd6c5b28f5d2a4572bfa
The following commit(s) were added to refs/heads/main by this push:
new e9d6a747 Skip unnecessary workaround.
e9d6a747 is described below
commit e9d6a74733c0de0316acdd6c5b28f5d2a4572bfa
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Oct 29 10:03:21 2025 -0400
Skip unnecessary workaround.
---
shibsp/impl/XMLRequestMapper.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/shibsp/impl/XMLRequestMapper.cpp b/shibsp/impl/XMLRequestMapper.cpp
index cb4bdb48..f5419057 100644
--- a/shibsp/impl/XMLRequestMapper.cpp
+++ b/shibsp/impl/XMLRequestMapper.cpp
@@ -230,8 +230,7 @@ void Override::loadACL(ptree& pt, Category& log)
acl = pt.get_child_optional(ACCESS_CONTROL_PROP_PATH);
if (acl) {
log.info("building inline XML-based AccessControl provider...");
- // We need to pass in the parent tree to allow it to walk down to the "expected" inline element.
- m_acl.reset(AgentConfig::getConfig().AccessControlManager.newPlugin(XML_ACCESS_CONTROL, pt, false));
+ m_acl.reset(AgentConfig::getConfig().AccessControlManager.newPlugin(XML_ACCESS_CONTROL, acl.get(), false));
}
else {
acl = pt.get_child_optional(ACCESS_CONTROL_PROVIDER_PROP_PATH);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list