summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/ServerFactory.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-09-12 01:58:50 +0000
committerMichi Henning <michi@zeroc.com>2002-09-12 01:58:50 +0000
commite9cfbfdbce12a9c2fd0aac38f007fb20fd422092 (patch)
treef6e9954d98e8952832c0613aaed66d77cce2c6a2 /cpp/src/IcePack/ServerFactory.cpp
parentfixes (diff)
downloadice-e9cfbfdbce12a9c2fd0aac38f007fb20fd422092.tar.bz2
ice-e9cfbfdbce12a9c2fd0aac38f007fb20fd422092.tar.xz
ice-e9cfbfdbce12a9c2fd0aac38f007fb20fd422092.zip
Fixed errors introduced yesterday with the more stringent check for
introduced names.
Diffstat (limited to 'cpp/src/IcePack/ServerFactory.cpp')
-rw-r--r--cpp/src/IcePack/ServerFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/ServerFactory.cpp b/cpp/src/IcePack/ServerFactory.cpp
index 5268c596c9e..33b91e046f6 100644
--- a/cpp/src/IcePack/ServerFactory.cpp
+++ b/cpp/src/IcePack/ServerFactory.cpp
@@ -180,7 +180,7 @@ IcePack::ServerFactory::createServerAdapter(const string& name, const ServerPrx&
{
ServerAdapterPtr adapterI = new ServerAdapterI(this, _traceLevels, _waitTime);
adapterI->name = name;
- adapterI->server = server;
+ adapterI->theServer = server;
Ice::Identity id;
id.category = "IcePackServerAdapter";