diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-10-02 15:44:38 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-10-02 15:44:38 -0700 |
commit | 2612b743884e38f49cb074ae52af0cf18fca85e5 (patch) | |
tree | d80ee84c285d9aabbf879ee15332fe7b7ecf950c /cpp/src | |
parent | fix to TestUtil.py (diff) | |
download | ice-2612b743884e38f49cb074ae52af0cf18fca85e5.tar.bz2 ice-2612b743884e38f49cb074ae52af0cf18fca85e5.tar.xz ice-2612b743884e38f49cb074ae52af0cf18fca85e5.zip |
Fixes related to 3772:
* install target in py/python/Makefile*
* typos in Glacier2/Application.cpp
* add restart command to C++/Python callback clients
* bug fixes in Glacier2.py
* minor fix in C# Glacier2.Application
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier2Lib/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Glacier2Lib/Application.cpp b/cpp/src/Glacier2Lib/Application.cpp index ac5b1dd9f8a..6a228f7a88a 100644 --- a/cpp/src/Glacier2Lib/Application.cpp +++ b/cpp/src/Glacier2Lib/Application.cpp @@ -322,7 +322,7 @@ Glacier2::Application::doMain(Ice::StringSeq& args, const Ice::InitializationDat catch(...) { Error out(getProcessLogger()); - out << IceInternal::_appName << ": unknow exception "; + out << IceInternal::_appName << ": unknown exception"; status = 1; } |