diff options
Diffstat (limited to 'cpp/src/IceGrid/ObjectCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/ObjectCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ObjectCache.cpp b/cpp/src/IceGrid/ObjectCache.cpp index 371f649e3c1..65cb547315e 100644 --- a/cpp/src/IceGrid/ObjectCache.cpp +++ b/cpp/src/IceGrid/ObjectCache.cpp @@ -372,7 +372,7 @@ ObjectEntry::allocated(const SessionIPtr& session) { Ice::IdentitySeq seq(1); seq.push_back(_info.proxy->ice_getIdentity()); - ctl->objectIdFilter()->addAccept(seq); + ctl->identityFilter()->addAccept(seq); } catch(const Ice::ObjectNotExistException&) { @@ -395,7 +395,7 @@ ObjectEntry::released(const SessionIPtr& session) { Ice::IdentitySeq seq(1); seq.push_back(_info.proxy->ice_getIdentity()); - ctl->objectIdFilter()->removeAccept(seq); + ctl->identityFilter()->removeAccept(seq); } catch(const Ice::ObjectNotExistException&) { |