summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/Parser.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-09-12 01:58:50 +0000
committerMichi Henning <michi@zeroc.com>2002-09-12 01:58:50 +0000
commite9cfbfdbce12a9c2fd0aac38f007fb20fd422092 (patch)
treef6e9954d98e8952832c0613aaed66d77cce2c6a2 /cpp/src/IcePack/Parser.cpp
parentfixes (diff)
downloadice-e9cfbfdbce12a9c2fd0aac38f007fb20fd422092.tar.bz2
ice-e9cfbfdbce12a9c2fd0aac38f007fb20fd422092.tar.xz
ice-e9cfbfdbce12a9c2fd0aac38f007fb20fd422092.zip
Fixed errors introduced yesterday with the more stringent check for
introduced names.
Diffstat (limited to 'cpp/src/IcePack/Parser.cpp')
-rw-r--r--cpp/src/IcePack/Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp
index 28e2e033597..ccea0a4f0b5 100644
--- a/cpp/src/IcePack/Parser.cpp
+++ b/cpp/src/IcePack/Parser.cpp
@@ -342,7 +342,7 @@ IcePack::Parser::describeServer(const list<string>& args)
cout << "pwd = " << desc.pwd << endl;
cout << "activation = " << (desc.activation == OnDemand ? "on-demand" : "manual");
cout << "args = ";
- copy(desc.args.begin(), desc.args.end(), ostream_iterator<string>(cout," "));
+ copy(desc.theArgs.begin(), desc.theArgs.end(), ostream_iterator<string>(cout," "));
cout << endl;
}
catch(const Exception& ex)