X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fmetadata%2Fimpl%2FEntityAttributesEntityMatcher.cpp;h=2f4820896796263b877f39b82636d46ac0ab7737;hp=f65608c67a9ba50fe62539c40e87f169a3fe38dd;hb=1462057b3b9ae7e165d34d988e30b14c213672ca;hpb=a77b0234049b3e1d9899b023102003282e2e5f6a diff --git a/saml/saml2/metadata/impl/EntityAttributesEntityMatcher.cpp b/saml/saml2/metadata/impl/EntityAttributesEntityMatcher.cpp index f65608c..2f48208 100644 --- a/saml/saml2/metadata/impl/EntityAttributesEntityMatcher.cpp +++ b/saml/saml2/metadata/impl/EntityAttributesEntityMatcher.cpp @@ -83,7 +83,7 @@ namespace opensaml { EntityAttributesEntityMatcher::EntityAttributesEntityMatcher(const DOMElement* e) : m_trimTags(XMLHelper::getAttrBool(e, false, trimTags)), - m_log(Category::getInstance(SAML_LOGCAT".EntityMatcher.EntityAttributes")) + m_log(Category::getInstance(SAML_LOGCAT ".EntityMatcher.EntityAttributes")) { // Check for shorthand syntax. if (e && e->hasAttributeNS(nullptr, attributeName) && (e->hasAttributeNS(nullptr, attributeValue) || e->hasAttributeNS(nullptr, attributeValueRegex))) { @@ -107,7 +107,7 @@ EntityAttributesEntityMatcher::EntityAttributesEntityMatcher(const DOMElement* e DOMElement* child = XMLHelper::getFirstChildElement(e, samlconstants::SAML20_NS, Attribute::LOCAL_NAME); while (child) { boost::shared_ptr obj(AttributeBuilder::buildOneFromElement(child)); - m_tags.push_back(boost::shared_dynamic_cast(obj)); + m_tags.push_back(boost::dynamic_pointer_cast(obj)); child = XMLHelper::getNextSiblingElement(child, samlconstants::SAML20_NS, Attribute::LOCAL_NAME); }