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/ServerBlobject.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/ServerBlobject.cpp')
-rw-r--r-- | cpp/src/Glacier/ServerBlobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Glacier/ServerBlobject.cpp b/cpp/src/Glacier/ServerBlobject.cpp index 84ab3339bc7..2cf87e0d4ad 100644 --- a/cpp/src/Glacier/ServerBlobject.cpp +++ b/cpp/src/Glacier/ServerBlobject.cpp @@ -48,7 +48,7 @@ Glacier::ServerBlobject::ice_invoke(const vector<Byte>& inParams, vector<Byte>& { assert(_clientAdapter); // Destroyed? - ObjectPrx proxy = _clientAdapter->createReverseProxy(current.identity); + ObjectPrx proxy = _clientAdapter->createReverseProxy(current.id); assert(proxy); return invoke(proxy, inParams, outParams, current); |