From: scantor Date: Mon, 27 Feb 2012 00:23:00 +0000 (+0000) Subject: Fix a typo in constructor X-Git-Tag: 2.5.0~29 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fopensaml2.git;a=commitdiff_plain;h=54970b889bce37d4ab3308d2fbd6dc90b84572ab Fix a typo in constructor git-svn-id: https://svn.shibboleth.net/cpp-opensaml/branches/REL_2@714 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0 --- diff --git a/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp b/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp index 62142e7..04e4e1c 100644 --- a/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp +++ b/saml/saml2/metadata/impl/BlacklistMetadataFilter.cpp @@ -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));