Fix a typo in constructor
authorScott Cantor <cantor.2@osu.edu>
Mon, 27 Feb 2012 00:23:00 +0000 (00:23 +0000)
committerScott Cantor <cantor.2@osu.edu>
Mon, 27 Feb 2012 00:23:00 +0000 (00:23 +0000)
saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp

index 62142e7..04e4e1c 100644 (file)
@@ -64,14 +64,14 @@ namespace opensaml {
         }
 
         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));