diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-12-12 13:46:59 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-12-12 13:46:59 +0000 |
commit | 91c321bac160e0cebfc929924c81a6768764adad (patch) | |
tree | 4c6088be3aaad773af91afa1cc383fa0928abb74 /cpp/src/IceGrid/ServerI.cpp | |
parent | adding some more file list scripts (diff) | |
download | ice-91c321bac160e0cebfc929924c81a6768764adad.tar.bz2 ice-91c321bac160e0cebfc929924c81a6768764adad.tar.xz ice-91c321bac160e0cebfc929924c81a6768764adad.zip |
Fixed IceGrid and IceBox bug where spaces in directory names were not
supported.
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerI.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp index f0bbc21a735..8c7bb230b25 100644 --- a/cpp/src/IceGrid/ServerI.cpp +++ b/cpp/src/IceGrid/ServerI.cpp @@ -1787,7 +1787,8 @@ 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)); + props.push_back(createProperty("IceBox.Service." + s->name, + s->entry + " --Ice.Config=\"" + path + "\"")); servicesStr += s->name + " "; } props.push_back(createProperty("IceBox.LoadOrder", servicesStr)); |