diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-01 21:21:05 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-01 21:21:05 +0000 |
commit | 31b064d4e4f55aadb9f03ab66ac59a94d82adfb6 (patch) | |
tree | c9e86b395f9c2c45e8205ae8ab99d3c5cbe6b838 /cpp/src/Glacier/Blobject.cpp | |
parent | cleaning up empty identity handling (diff) | |
download | ice-31b064d4e4f55aadb9f03ab66ac59a94d82adfb6.tar.bz2 ice-31b064d4e4f55aadb9f03ab66ac59a94d82adfb6.tar.xz ice-31b064d4e4f55aadb9f03ab66ac59a94d82adfb6.zip |
IcePatch work
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 66ddf171e98..bfd9626d994 100644 --- a/cpp/src/Glacier/Blobject.cpp +++ b/cpp/src/Glacier/Blobject.cpp @@ -74,16 +74,16 @@ Glacier::Blobject::invoke(ObjectPrx& proxy, const vector<Byte>& inParams, vector out << "routing to:\n" << "proxy = " << _communicator->proxyToString(proxy) << '\n' << "operation = " << current.operation << '\n' - << "idempotent = " << (current.isIdempotent ? "true" : "false"); + << "idempotent = " << (current.idempotent ? "true" : "false"); } if(_forwardContext) { - return proxy->ice_invoke(current.operation, current.isIdempotent, inParams, outParams, current.ctx); + return proxy->ice_invoke(current.operation, current.idempotent, inParams, outParams, current.ctx); } else { - return proxy->ice_invoke(current.operation, current.isIdempotent, inParams, outParams); + return proxy->ice_invoke(current.operation, current.idempotent, inParams, outParams); } } } |