[cpp-opensaml COMMIT] /branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp

noreply at shibboleth.net noreply at shibboleth.net
Mon Feb 27 00:23:01 GMT 2012


Author: scantor
Date: Mon Feb 27 00:23:00 2012
New Revision: 714

URL: http://svn.shibboleth.net/view/cpp-opensaml?rev=714&view=rev
Log:
Fix a typo in constructor

Modified:
    branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp

Modified: branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp?rev=714&r1=713&r2=714&view=diff
==============================================================================
--- branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp (original)
+++ branches/REL_2/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp Mon Feb 27 00:23:00 2012
@@ -64,14 +64,14 @@
         }
 
         static const XMLCh Exclude[] = UNICODE_LITERAL_7(E,x,c,l,u,d,e);
-        static const XMLCh matcher[] = UNICODE_LITERAL_7(m,a,t,c,h,e,r);
+        static const XMLCh _matcher[] = UNICODE_LITERAL_7(m,a,t,c,h,e,r);
     };
 };
 
 
 BlacklistMetadataFilter::BlacklistMetadataFilter(const DOMElement* e)
 {
-    string matcher(XMLHelper::getAttrString(e, nullptr, matcher));
+    string matcher(XMLHelper::getAttrString(e, nullptr, _matcher));
     if (!matcher.empty())
         m_matcher.reset(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(matcher.c_str(), e));
 



More information about the commits mailing list