diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-01-04 15:48:51 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-01-04 15:48:51 +0100 |
commit | 578638cc0d688ab1d4225b71b502cc7029a50b53 (patch) | |
tree | a27874904e672e66d8686dd9349d3fd6f13c21fb /cpp/test/IceBox/configuration/Client.cpp | |
parent | - Added missing notifyAll in ConnectRequestHandler (which could cause async (diff) | |
download | ice-578638cc0d688ab1d4225b71b502cc7029a50b53.tar.bz2 ice-578638cc0d688ab1d4225b71b502cc7029a50b53.tar.xz ice-578638cc0d688ab1d4225b71b502cc7029a50b53.zip |
Fixed IceBox/configuration test failure when run with --protocol=ssl
Diffstat (limited to 'cpp/test/IceBox/configuration/Client.cpp')
-rw-r--r-- | cpp/test/IceBox/configuration/Client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/IceBox/configuration/Client.cpp b/cpp/test/IceBox/configuration/Client.cpp index 66742b16a9c..cd21712807a 100644 --- a/cpp/test/IceBox/configuration/Client.cpp +++ b/cpp/test/IceBox/configuration/Client.cpp @@ -16,15 +16,15 @@ using namespace std; using namespace Test; int -run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) +run(int argc, char* argv[], const Ice::CommunicatorPtr& comm) { void allTests(const Ice::CommunicatorPtr&); - allTests(communicator); + allTests(comm); // // Shutdown the IceBox server. // - Ice::ProcessPrx::uncheckedCast(communicator->stringToProxy("DemoIceBox/admin -f Process:tcp -p 9996"))->shutdown(); + Ice::ProcessPrx::uncheckedCast(comm->stringToProxy("DemoIceBox/admin -f Process:default -p 9996"))->shutdown(); return EXIT_SUCCESS; } |