summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/ServerFactory.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-12-18 21:40:51 +0000
committerMark Spruiell <mes@zeroc.com>2003-12-18 21:40:51 +0000
commit3ab683645ff965d44195fac45b568c2159c8657a (patch)
treea6c02b613f241178200a0f869b9164509b948cbc /cpp/src/IcePack/ServerFactory.cpp
parentminor fix (diff)
downloadice-3ab683645ff965d44195fac45b568c2159c8657a.tar.bz2
ice-3ab683645ff965d44195fac45b568c2159c8657a.tar.xz
ice-3ab683645ff965d44195fac45b568c2159c8657a.zip
Win32 fixes
Diffstat (limited to 'cpp/src/IcePack/ServerFactory.cpp')
-rw-r--r--cpp/src/IcePack/ServerFactory.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IcePack/ServerFactory.cpp b/cpp/src/IcePack/ServerFactory.cpp
index eed23b1ade1..a420068ef83 100644
--- a/cpp/src/IcePack/ServerFactory.cpp
+++ b/cpp/src/IcePack/ServerFactory.cpp
@@ -216,11 +216,11 @@ IcePack::ServerFactory::createServerAdapter(const string& adapterId, const Serve
}
void
-IcePack::ServerFactory::destroy(const ServerPtr& server, const Ice::Identity& identity)
+IcePack::ServerFactory::destroy(const ServerPtr& server, const Ice::Identity& ident)
{
try
{
- _serverEvictor->destroyObject(identity);
+ _serverEvictor->destroyObject(ident);
if(_traceLevels->server > 0)
{
@@ -239,15 +239,15 @@ IcePack::ServerFactory::destroy(const ServerPtr& server, const Ice::Identity& id
assert(false);
}
- _adapter->remove(identity);
+ _adapter->remove(ident);
}
void
-IcePack::ServerFactory::destroy(const ServerAdapterPtr& adapter, const Ice::Identity& identity)
+IcePack::ServerFactory::destroy(const ServerAdapterPtr& adapter, const Ice::Identity& ident)
{
try
{
- _serverAdapterEvictor->destroyObject(identity);
+ _serverAdapterEvictor->destroyObject(ident);
if(_traceLevels->adapter > 0)
{
@@ -266,5 +266,5 @@ IcePack::ServerFactory::destroy(const ServerAdapterPtr& adapter, const Ice::Iden
assert(false);
}
- _adapter->remove(identity);
+ _adapter->remove(ident);
}