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

noreply at shibboleth.net noreply at shibboleth.net
Mon Feb 27 15:54:05 GMT 2012


Author: scantor
Date: Mon Feb 27 15:54:05 2012
New Revision: 715

URL: http://svn.shibboleth.net/view/cpp-opensaml?rev=715&view=rev
Log:
Fix second c'tor

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

Modified: branches/REL_2/saml/saml2/metadata/impl/WhitelistMetadataFilter.cpp
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/saml2/metadata/impl/WhitelistMetadataFilter.cpp?rev=715&r1=714&r2=715&view=diff
==============================================================================
--- branches/REL_2/saml/saml2/metadata/impl/WhitelistMetadataFilter.cpp (original)
+++ branches/REL_2/saml/saml2/metadata/impl/WhitelistMetadataFilter.cpp Mon Feb 27 15:54:05 2012
@@ -65,14 +65,14 @@
         }
 
         static const XMLCh Include[] = UNICODE_LITERAL_7(I,n,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);
     };
 };
 
 
 WhitelistMetadataFilter::WhitelistMetadataFilter(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