summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ServerI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-01-10 10:10:36 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-01-10 10:10:36 +0000
commitfc18b7c172d907b95a7067e5122216ac710ac7dd (patch)
treecb4dd61a430c828c5b59b9166f9e8087890cbbc0 /cpp/src/IceGrid/ServerI.cpp
parentFix (diff)
downloadice-fc18b7c172d907b95a7067e5122216ac710ac7dd.tar.bz2
ice-fc18b7c172d907b95a7067e5122216ac710ac7dd.tar.xz
ice-fc18b7c172d907b95a7067e5122216ac710ac7dd.zip
Put back fix for supporting spaces in service config file paths
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r--cpp/src/IceGrid/ServerI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp
index 1c0ef752ac7..c1006cadec5 100644
--- a/cpp/src/IceGrid/ServerI.cpp
+++ b/cpp/src/IceGrid/ServerI.cpp
@@ -1966,7 +1966,7 @@ ServerI::updateConfigFile(const string& serverDir, const CommunicatorDescriptorP
ServiceDescriptorPtr s = ServiceDescriptorPtr::dynamicCast(p->descriptor);
const string path = serverDir + "/config/config_" + s->name;
props.push_back(createProperty("IceBox.Service." + s->name,
- s->entry + " --Ice.Config=" + path));
+ s->entry + " --Ice.Config=\"" + path + "\""));
servicesStr += s->name + " ";
}
props.push_back(createProperty("IceBox.LoadOrder", servicesStr));