diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-09-18 20:01:11 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-09-18 20:01:11 +0000 |
commit | aa712ab96c9d6a9ae7dcea6b4907de46a4ee09a5 (patch) | |
tree | e6d52c0dfec4c9d8ca284a965db6cf3bf04b052e /cpp/src/IcePack/Parser.cpp | |
parent | fixes (diff) | |
download | ice-aa712ab96c9d6a9ae7dcea6b4907de46a4ee09a5.tar.bz2 ice-aa712ab96c9d6a9ae7dcea6b4907de46a4ee09a5.tar.xz ice-aa712ab96c9d6a9ae7dcea6b4907de46a4ee09a5.zip |
Changed tracing level for server adapters. Fixed parser bug. Fix activation
bug (race condition).
Diffstat (limited to 'cpp/src/IcePack/Parser.cpp')
-rw-r--r-- | cpp/src/IcePack/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp index ccea0a4f0b5..4831be1a1f0 100644 --- a/cpp/src/IcePack/Parser.cpp +++ b/cpp/src/IcePack/Parser.cpp @@ -340,7 +340,7 @@ IcePack::Parser::describeServer(const list<string>& args) cout << "node = " << desc.node << endl; cout << "path = " << desc.path << endl; cout << "pwd = " << desc.pwd << endl; - cout << "activation = " << (desc.activation == OnDemand ? "on-demand" : "manual"); + cout << "activation = " << (desc.activation == OnDemand ? "on-demand" : "manual") << endl; cout << "args = "; copy(desc.theArgs.begin(), desc.theArgs.end(), ostream_iterator<string>(cout," ")); cout << endl; |