diff options
Diffstat (limited to 'cpp/src/IcePack/Parser.cpp')
-rw-r--r-- | cpp/src/IcePack/Parser.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp index bb22a61276f..89292bf17e7 100644 --- a/cpp/src/IcePack/Parser.cpp +++ b/cpp/src/IcePack/Parser.cpp @@ -62,7 +62,6 @@ IcePack::Parser::add(const list<string>& args) ServerDescription desc; list<string>::const_iterator p = args.begin(); desc.object = _communicator->stringToProxy(*p); - desc.regex = false; if (++p != args.end()) { desc.path = *p; @@ -93,7 +92,7 @@ IcePack::Parser::remove(const list<string>& args) try { - _admin->remove(args.front()); + _admin->remove(stringToIdentity(args.front())); } catch(const Exception& ex) { @@ -114,7 +113,6 @@ IcePack::Parser::listAll() { cout << "identity = " << p->first << endl; cout << "object = " << _communicator->proxyToString(p->second.object) << endl; - cout << "regex = " << boolalpha << p->second.regex << endl; cout << "host = " << p->second.host << endl; cout << "path = " << p->second.path << endl; cout << "args ="; |