diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-09-01 14:44:08 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-09-01 14:44:08 +0000 |
commit | a3fef020a305338363ec933dba834b475510c48e (patch) | |
tree | 7f782b5e3e3823fde01fe7004aaf3560e2fe3b23 /cpp/src/IceGrid/DescriptorHelper.cpp | |
parent | IceGrid Windows port. (diff) | |
download | ice-a3fef020a305338363ec933dba834b475510c48e.tar.bz2 ice-a3fef020a305338363ec933dba834b475510c48e.tar.xz ice-a3fef020a305338363ec933dba834b475510c48e.zip |
Added support for env variable substitution (Unix only for now).
Diffstat (limited to 'cpp/src/IceGrid/DescriptorHelper.cpp')
-rw-r--r-- | cpp/src/IceGrid/DescriptorHelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/DescriptorHelper.cpp b/cpp/src/IceGrid/DescriptorHelper.cpp index 5ce2dbdf2f3..1952fbfa78a 100644 --- a/cpp/src/IceGrid/DescriptorHelper.cpp +++ b/cpp/src/IceGrid/DescriptorHelper.cpp @@ -2142,7 +2142,7 @@ ApplicationHelper::printDiff(Output& out, const ApplicationHelper& helper) const NodeHelperDict::const_iterator q = helper._nodes.find(r->first); if(q != helper._nodes.end()) { - p->second.printDiff(out, q->second); + r->second.printDiff(out, q->second); } } for(Ice::StringSeq::const_iterator s = removed.begin(); s != removed.end(); ++s) |