From: Scott Cantor Date: Mon, 15 Jun 2009 17:15:48 +0000 (+0000) Subject: Solaris fix. X-Git-Tag: 2.2.0~2 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=ff26504f36f580aa2cf88bad89cbad18cf4dc435;p=shibboleth%2Fcpp-sp.git Solaris fix. --- diff --git a/shibsp/attribute/DOMAttributeDecoder.cpp b/shibsp/attribute/DOMAttributeDecoder.cpp index 1549690..e7a9591 100644 --- a/shibsp/attribute/DOMAttributeDecoder.cpp +++ b/shibsp/attribute/DOMAttributeDecoder.cpp @@ -76,8 +76,9 @@ DOMAttributeDecoder::DOMAttributeDecoder(const DOMElement* e) log.debug("mapping (%s) to (%s)", f->toString().c_str(), t.get()); m_tagMap.insert( make_pair( - pair(f->getLocalPart(), f->hasNamespaceURI() ? f->getNamespaceURI() : &chNull), - t.get()) + pair(f->getLocalPart(), f->hasNamespaceURI() ? f->getNamespaceURI() : &chNull), + t.get() + ) ); } }