From: Scott Cantor Date: Tue, 26 May 2009 19:49:53 +0000 (+0000) Subject: Switch to base class references. X-Git-Tag: 2.2.0~39 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=13c2b8f59216da5f84f5574fe8b7f5b677e32a62;p=shibboleth%2Fcpp-sp.git Switch to base class references. --- diff --git a/shibsp/impl/ChainingAccessControl.cpp b/shibsp/impl/ChainingAccessControl.cpp index 7642a0a..8b73906 100644 --- a/shibsp/impl/ChainingAccessControl.cpp +++ b/shibsp/impl/ChainingAccessControl.cpp @@ -45,11 +45,11 @@ namespace shibsp { } Lockable* lock() { - for_each(m_ac.begin(), m_ac.end(), mem_fun(&AccessControl::lock)); + for_each(m_ac.begin(), m_ac.end(), mem_fun(&Lockable::lock)); return this; } void unlock() { - for_each(m_ac.begin(), m_ac.end(), mem_fun(&AccessControl::unlock)); + for_each(m_ac.begin(), m_ac.end(), mem_fun(&Lockable::unlock)); } aclresult_t authorized(const SPRequest& request, const Session* session) const;