diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-26 23:24:58 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-26 23:24:58 +0000 |
commit | 844ec1a60c75b883e44cc8906e536b7fba3509a0 (patch) | |
tree | d431701690080bd2227b8f04a6d47548020a95e9 /cpp/src/Glacier/Blobject.cpp | |
parent | const correctness (diff) | |
download | ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.bz2 ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.xz ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.zip |
case insensitivity fixes
Diffstat (limited to 'cpp/src/Glacier/Blobject.cpp')
-rw-r--r-- | cpp/src/Glacier/Blobject.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Glacier/Blobject.cpp b/cpp/src/Glacier/Blobject.cpp index 37aed350eba..ab6b484c64c 100644 --- a/cpp/src/Glacier/Blobject.cpp +++ b/cpp/src/Glacier/Blobject.cpp @@ -79,7 +79,7 @@ Glacier::Blobject::invoke(ObjectPrx& proxy, const vector<Byte>& inParams, vector if(_forwardContext) { - return proxy->ice_invoke(current.operation, current.nonmutating, inParams, outParams, current.context); + return proxy->ice_invoke(current.operation, current.nonmutating, inParams, outParams, current.ctx); } else { @@ -115,8 +115,8 @@ Glacier::Blobject::modifyProxy(ObjectPrx& proxy, const Current& current) } MissiveQueuePtr missiveQueue; - Context::const_iterator p = current.context.find("_fwd"); - if(p != current.context.end()) + Context::const_iterator p = current.ctx.find("_fwd"); + if(p != current.ctx.end()) { for(unsigned int i = 0; i < p->second.length(); ++i) { |