From: Scott Cantor Date: Wed, 11 Jun 2008 03:05:39 +0000 (+0000) Subject: https://issues.shibboleth.net/jira/browse/CPPXT-15 X-Git-Tag: 1.1.0~16 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=commitdiff_plain;h=7f15a5c36be5c748d7610076f76a10c5ba1271f0 https://issues.shibboleth.net/jira/browse/CPPXT-15 --- diff --git a/xmltooling/security/impl/ChainingCredentialResolver.cpp b/xmltooling/security/impl/ChainingCredentialResolver.cpp index 230afbc..f98ec7c 100644 --- a/xmltooling/security/impl/ChainingCredentialResolver.cpp +++ b/xmltooling/security/impl/ChainingCredentialResolver.cpp @@ -43,11 +43,11 @@ namespace xmltooling { } Lockable* lock() { - for_each(m_resolvers.begin(), m_resolvers.end(), mem_fun(&CredentialResolver::lock)); + for_each(m_resolvers.begin(), m_resolvers.end(), mem_fun(&Lockable::lock)); return this; } void unlock() { - for_each(m_resolvers.begin(), m_resolvers.end(), mem_fun(&CredentialResolver::unlock)); + for_each(m_resolvers.begin(), m_resolvers.end(), mem_fun(&Lockable::unlock)); } const Credential* resolve(const CredentialCriteria* criteria=NULL) const {