diff options
Diffstat (limited to 'cpp/test/IceSSL/configuration/Client.cpp')
-rw-r--r-- | cpp/test/IceSSL/configuration/Client.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/cpp/test/IceSSL/configuration/Client.cpp b/cpp/test/IceSSL/configuration/Client.cpp index 4a60e4a9be4..be76b51b598 100644 --- a/cpp/test/IceSSL/configuration/Client.cpp +++ b/cpp/test/IceSSL/configuration/Client.cpp @@ -16,8 +16,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { if(argc < 2) { - cerr << "Usage: " << argv[0] << " testdir" << endl; - return 1; + cerr << "Usage: " << argv[0] << " testdir" << endl; + return 1; } void allTests(const Ice::CommunicatorPtr&, const string&); @@ -35,26 +35,26 @@ main(int argc, char* argv[]) try { - communicator = Ice::initialize(argc, argv); - status = run(argc, argv, communicator); + communicator = Ice::initialize(argc, argv); + status = run(argc, argv, communicator); } catch(const Ice::Exception& ex) { - cerr << ex << endl; - status = EXIT_FAILURE; + cerr << ex << endl; + status = EXIT_FAILURE; } if(communicator) { - try - { - communicator->destroy(); - } - catch(const Ice::Exception& ex) - { - cerr << ex << endl; - status = EXIT_FAILURE; - } + try + { + communicator->destroy(); + } + catch(const Ice::Exception& ex) + { + cerr << ex << endl; + status = EXIT_FAILURE; + } } return status; |