summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/Parser.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-11-07 23:58:33 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-11-07 23:58:33 +0000
commit55a5b40f975a6853eac99db155a6dc84b3530c5b (patch)
tree00bada0565fe593effb0ddf10e44820f08451295 /cpp/src/IcePack/Parser.cpp
parentFixes (diff)
downloadice-55a5b40f975a6853eac99db155a6dc84b3530c5b.tar.bz2
ice-55a5b40f975a6853eac99db155a6dc84b3530c5b.tar.xz
ice-55a5b40f975a6853eac99db155a6dc84b3530c5b.zip
Replaced invalid references to "adapter name" by "adapter id".
Diffstat (limited to 'cpp/src/IcePack/Parser.cpp')
-rw-r--r--cpp/src/IcePack/Parser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp
index 79c8e5d1a02..c4d86b3d81e 100644
--- a/cpp/src/IcePack/Parser.cpp
+++ b/cpp/src/IcePack/Parser.cpp
@@ -90,7 +90,7 @@ IcePack::Parser::addApplication(const list<string>& args)
string descriptor = *p++;
- Targets targets;
+ ServerTargets targets;
for(; p != args.end(); ++p)
{
targets.push_back(*p);
@@ -231,7 +231,7 @@ IcePack::Parser::addServer(const list<string>& args)
string descriptor = *p++;
string path;
string ldpath;
- Targets targets;
+ ServerTargets targets;
if(p != args.end())
{
@@ -349,7 +349,7 @@ IcePack::Parser::describeServer(const list<string>& args)
cout << "pwd = " << desc.pwd << endl;
cout << "activation = " << (activation == OnDemand ? "on-demand" : "manual") << endl;
cout << "args = ";
- copy(desc.theArgs.begin(), desc.theArgs.end(), ostream_iterator<string>(cout," "));
+ copy(desc.args.begin(), desc.args.end(), ostream_iterator<string>(cout," "));
cout << endl;
}
catch(const Exception& ex)
@@ -513,7 +513,7 @@ IcePack::Parser::listAllAdapters()
{
try
{
- Ice::StringSeq names = _admin->getAllAdapterNames();
+ Ice::StringSeq names = _admin->getAllAdapterIds();
copy(names.begin(), names.end(), ostream_iterator<string>(cout,"\n"));
}
catch(const Exception& ex)