summaryrefslogtreecommitdiff
path: root/cpp/test/Glacier2/ssl/Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Glacier2/ssl/Server.cpp')
-rwxr-xr-xcpp/test/Glacier2/ssl/Server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Glacier2/ssl/Server.cpp b/cpp/test/Glacier2/ssl/Server.cpp
index aae69863062..cfe07d584b0 100755
--- a/cpp/test/Glacier2/ssl/Server.cpp
+++ b/cpp/test/Glacier2/ssl/Server.cpp
@@ -113,8 +113,8 @@ SessionServer::run(int argc, char* argv[])
{
Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapterWithEndpoints(
"SessionServer", "tcp -h 127.0.0.1 -p 12350 -t 10000");
- adapter->add(new PermissionsVerifierI, Ice::stringToIdentity("verifier"));
- adapter->add(new SessionManagerI, Ice::stringToIdentity("sessionmanager"));
+ adapter->add(new PermissionsVerifierI, communicator()->stringToIdentity("verifier"));
+ adapter->add(new SessionManagerI, communicator()->stringToIdentity("sessionmanager"));
adapter->activate();
communicator()->waitForShutdown();
return EXIT_SUCCESS;