summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Application.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2007-12-04 10:45:33 +0100
committerBenoit Foucher <benoit@zeroc.com>2007-12-04 10:45:33 +0100
commit3beb1f44e62288277fe3b26dbd241ecc5d0ebfef (patch)
treee253bd47c271e72c761aedbb36de9d1c382e2e36 /cpp/src/Ice/Application.cpp
parentFixed bug 1775 (service manager issues) (diff)
downloadice-3beb1f44e62288277fe3b26dbd241ecc5d0ebfef.tar.bz2
ice-3beb1f44e62288277fe3b26dbd241ecc5d0ebfef.tar.xz
ice-3beb1f44e62288277fe3b26dbd241ecc5d0ebfef.zip
- Fixed minor bug in Ice::Application (error message was missing ": ")
- Fixed bug where exceptions weren't correctly catched by the endpoint host resolver when doing the non-blocking getAddresses call.
Diffstat (limited to 'cpp/src/Ice/Application.cpp')
-rw-r--r--cpp/src/Ice/Application.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp
index 48a6c38d135..5bf86ba46a2 100644
--- a/cpp/src/Ice/Application.cpp
+++ b/cpp/src/Ice/Application.cpp
@@ -595,7 +595,7 @@ Ice::Application::mainInternal(int argc, char* argv[], const InitializationData&
}
catch(const std::exception& ex)
{
- cerr << _appName << ex.what() << endl;
+ cerr << _appName << ": " << ex.what() << endl;
status = EXIT_FAILURE;
}
catch(const std::string& msg)