X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=shibsp%2Fattribute%2Ffiltering%2Fimpl%2FAttributeRequesterInEntityGroupFunctor.cpp;h=e03c12a2ba28bfc4acf78478e98592fe63d39102;hb=ef6a3893b59431063dd7c619129b2854218fe173;hp=8c372556ccb8d48841b12713b3e4564b4e4267e1;hpb=e8d53ac65da2624233ffd39c5a2a7dacc02a4b27;p=shibboleth%2Fcpp-sp.git diff --git a/shibsp/attribute/filtering/impl/AttributeRequesterInEntityGroupFunctor.cpp b/shibsp/attribute/filtering/impl/AttributeRequesterInEntityGroupFunctor.cpp index 8c37255..e03c12a 100644 --- a/shibsp/attribute/filtering/impl/AttributeRequesterInEntityGroupFunctor.cpp +++ b/shibsp/attribute/filtering/impl/AttributeRequesterInEntityGroupFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2001-2009 Internet2 + * Copyright 2001-2010 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,7 +44,7 @@ namespace shibsp { const XMLCh* m_group; public: AttributeRequesterInEntityGroupFunctor(const DOMElement* e) { - m_group = e ? e->getAttributeNS(NULL,groupID) : NULL; + m_group = e ? e->getAttributeNS(nullptr,groupID) : nullptr; if (!m_group || !*m_group) throw ConfigurationException("AttributeRequesterInEntityGroup MatchFunctor requires non-empty groupID attribute."); }