X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=shibsp%2Fattribute%2Ffiltering%2Fimpl%2FAttributeIssuerRegexFunctor.cpp;h=f342f61bbd13100a16b6a168a77276a8b179ff76;hb=48483cfaef93a108d2cdc4af4e9e5c60432ba821;hp=7c678ab59a3fe59cc76a98b01af8f9364d48b6a9;hpb=870de4c8f1a850ef7c2a23d42a16e0c4ef24c159;p=shibboleth%2Fsp.git diff --git a/shibsp/attribute/filtering/impl/AttributeIssuerRegexFunctor.cpp b/shibsp/attribute/filtering/impl/AttributeIssuerRegexFunctor.cpp index 7c678ab..f342f61 100644 --- a/shibsp/attribute/filtering/impl/AttributeIssuerRegexFunctor.cpp +++ b/shibsp/attribute/filtering/impl/AttributeIssuerRegexFunctor.cpp @@ -17,7 +17,7 @@ /** * AttributeIssuerRegexFunctor.cpp * - * A match function that evaluates to true if the Attribute issuer matches the provided regular + * A match function that evaluates to true if the Attribute issuer matches the provided regular * expression. */ @@ -34,7 +34,7 @@ namespace shibsp { static const XMLCh regex[] = UNICODE_LITERAL_5(r,e,g,e,x); /** - * A match function that evaluates to true if the Attribute issuer matches the provided regular + * A match function that evaluates to true if the Attribute issuer matches the provided regular * expression. */ class SHIBSP_DLLLOCAL AttributeIssuerRegexFunctor : public MatchFunctor @@ -48,10 +48,10 @@ namespace shibsp { try { m_regex = new RegularExpression(r, e->getAttributeNS(NULL,options)); } - catch (XMLException& ex) { - xmltooling::auto_ptr_char temp(ex.getMessage()); - throw ConfigurationException(temp.get()); - } + catch (XMLException& ex) { + xmltooling::auto_ptr_char temp(ex.getMessage()); + throw ConfigurationException(temp.get()); + } } virtual ~AttributeIssuerRegexFunctor() {