summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/ComponentBuilder.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2003-11-26 15:52:02 +0000
committerBenoit Foucher <benoit@zeroc.com>2003-11-26 15:52:02 +0000
commit2733344573da38f0ec26f451a3991702a18d0407 (patch)
tree325232ba9bc7173e8c229209e20ee20fcea54ce5 /cpp/src/IcePack/ComponentBuilder.cpp
parentFixes to support DB_CONFIG properties (diff)
downloadice-2733344573da38f0ec26f451a3991702a18d0407.tar.bz2
ice-2733344573da38f0ec26f451a3991702a18d0407.tar.xz
ice-2733344573da38f0ec26f451a3991702a18d0407.zip
Fixes to support DB_CONFIG properties
Diffstat (limited to 'cpp/src/IcePack/ComponentBuilder.cpp')
-rw-r--r--cpp/src/IcePack/ComponentBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/ComponentBuilder.cpp b/cpp/src/IcePack/ComponentBuilder.cpp
index 60cd5356a3e..d13c1cde46a 100644
--- a/cpp/src/IcePack/ComponentBuilder.cpp
+++ b/cpp/src/IcePack/ComponentBuilder.cpp
@@ -189,7 +189,7 @@ class GenerateConfiguration : public Task
string
operator()(const Ice::PropertyDict::value_type& p) const
{
- return p.first + _sep + p.second.substr(_prefix.length());
+ return p.first.substr(_prefix.length()) + _sep + p.second;
}
private: