summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/AdminI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IcePack/AdminI.cpp')
-rw-r--r--cpp/src/IcePack/AdminI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePack/AdminI.cpp b/cpp/src/IcePack/AdminI.cpp
index c39d458b7cd..f09b89c5f96 100644
--- a/cpp/src/IcePack/AdminI.cpp
+++ b/cpp/src/IcePack/AdminI.cpp
@@ -50,7 +50,7 @@ IcePack::AdminI::addServer(const string& node, const string& name, const string&
const string& descriptor, const Targets& targets, const Current&)
{
ApplicationBuilder builder(_communicator, _nodeRegistry, targets);
- builder.addServer(name, node, descriptor, path, ldpath);
+ builder.addServer(name, node, descriptor, path, ldpath, "");
builder.execute();
}
@@ -63,7 +63,7 @@ IcePack::AdminI::removeServer(const string& name, const Current&)
ServerDescription desc = server->getServerDescription();
ApplicationBuilder builder(_communicator, _nodeRegistry, desc.theTargets);
- builder.addServer(name, desc.node, desc.descriptor, desc.path, "");
+ builder.addServer(name, desc.node, desc.descriptor, desc.path, "", "");
builder.undo();
}
catch(const Ice::ObjectNotExistException&)