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/ClientBlobject.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/ClientBlobject.cpp')
-rw-r--r-- | cpp/src/Glacier/ClientBlobject.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Glacier/ClientBlobject.cpp b/cpp/src/Glacier/ClientBlobject.cpp index e582b4e73c9..de8a070f9d3 100644 --- a/cpp/src/Glacier/ClientBlobject.cpp +++ b/cpp/src/Glacier/ClientBlobject.cpp @@ -70,25 +70,25 @@ Glacier::ClientBlobject::ice_invoke(const vector<Byte>& inParams, vector<Byte>& // if(!_allowCategories.empty()) { - if(!binary_search(_allowCategories.begin(), _allowCategories.end(), current.identity.category)) + if(!binary_search(_allowCategories.begin(), _allowCategories.end(), current.id.category)) { if(_traceLevel >= 1) { Trace out(_logger, "Glacier"); out << "rejecting request\n"; - out << "identity: " << identityToString(current.identity); + out << "identity: " << identityToString(current.id); } ObjectNotExistException ex(__FILE__, __LINE__); - ex.identity = current.identity; + ex.id = current.id; throw ex; } } - ObjectPrx proxy = _routingTable->get(current.identity); + ObjectPrx proxy = _routingTable->get(current.id); if(!proxy) { ObjectNotExistException ex(__FILE__, __LINE__); - ex.identity = current.identity; + ex.id = current.id; throw ex; } |