[cpp-xmltooling] branch master updated: SSPCPP-778 - Fork configuration and address backward compatibility
Scott Cantor
cantor.2 at osu.edu
Thu Jun 7 20:15:27 EDT 2018
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-xmltooling.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-xmltooling.git;a=commit;h=00229dd0dcab6629a95afc7573b5b62c142cfb8f
The following commit(s) were added to refs/heads/master by this push:
new 00229dd SSPCPP-778 - Fork configuration and address backward compatibility
00229dd is described below
commit 00229dd0dcab6629a95afc7573b5b62c142cfb8f
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jun 7 20:14:30 2018 -0400
SSPCPP-778 - Fork configuration and address backward compatibility
https://issues.shibboleth.net/jira/browse/SSPCPP-778
Bypass deprecated CRL option.
---
xmltooling/security/impl/AbstractPKIXTrustEngine.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xmltooling/security/impl/AbstractPKIXTrustEngine.cpp b/xmltooling/security/impl/AbstractPKIXTrustEngine.cpp
index 984eafa..52455aa 100644
--- a/xmltooling/security/impl/AbstractPKIXTrustEngine.cpp
+++ b/xmltooling/security/impl/AbstractPKIXTrustEngine.cpp
@@ -127,7 +127,7 @@ AbstractPKIXTrustEngine::AbstractPKIXTrustEngine(const xercesc::DOMElement* e, b
m_policyMappingInhibit(XMLHelper::getAttrBool(e, false, policyMappingInhibit)),
m_anyPolicyInhibit(XMLHelper::getAttrBool(e, false, anyPolicyInhibit))
{
- if (m_checkRevocation.empty() && XMLHelper::getAttrBool(e, false, fullCRLChain)) {
+ if (m_checkRevocation.empty() && deprecationSupport && XMLHelper::getAttrBool(e, false, fullCRLChain)) {
Category::getInstance(XMLTOOLING_LOGCAT ".TrustEngine.PKIX").warn(
"DEPRECATED: replace fullCRLChain option with checkRevocation set to \"fullChain\""
);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list