summaryrefslogtreecommitdiff
path: root/cpp/src/IceBox/Server.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-04-02 01:28:59 +0000
committerMark Spruiell <mes@zeroc.com>2002-04-02 01:28:59 +0000
commit2c7658451fb8e832451f758648dea584a13fd9ce (patch)
treef23c606d3785af50917c9b459070d601244c4b9b /cpp/src/IceBox/Server.cpp
parentadding future ops (diff)
downloadice-2c7658451fb8e832451f758648dea584a13fd9ce.tar.bz2
ice-2c7658451fb8e832451f758648dea584a13fd9ce.tar.xz
ice-2c7658451fb8e832451f758648dea584a13fd9ce.zip
initial clean-up
Diffstat (limited to 'cpp/src/IceBox/Server.cpp')
-rw-r--r--cpp/src/IceBox/Server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceBox/Server.cpp b/cpp/src/IceBox/Server.cpp
index 13c18d746df..edb4ad5d01a 100644
--- a/cpp/src/IceBox/Server.cpp
+++ b/cpp/src/IceBox/Server.cpp
@@ -27,9 +27,9 @@ main(int argc, char* argv[])
try
{
communicator = initialize(argc, argv);
- ServiceManagerI* serviceManagerImpl = new ServiceManagerI(communicator);
+ ServiceManagerI* serviceManagerImpl = new ServiceManagerI(communicator, argc, argv);
serviceManager = serviceManagerImpl;
- status = serviceManagerImpl->run(argc, argv);
+ status = serviceManagerImpl->run();
}
catch (const Exception& ex)
{