summaryrefslogtreecommitdiff
path: root/cpp/src/Glacier/Blobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Glacier/Blobject.cpp')
-rw-r--r--cpp/src/Glacier/Blobject.cpp6
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);
}
}
}