diff options
Diffstat (limited to 'cpp/src/Ice/TraceUtil.cpp')
-rw-r--r-- | cpp/src/Ice/TraceUtil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/TraceUtil.cpp b/cpp/src/Ice/TraceUtil.cpp index e0675cf585a..884e88b87d6 100644 --- a/cpp/src/Ice/TraceUtil.cpp +++ b/cpp/src/Ice/TraceUtil.cpp @@ -111,9 +111,9 @@ printRequestHeader(ostream& s, BasicStream& stream) string operation; stream.read(operation); s << "\noperation = " << operation; - bool nonmutating; - stream.read(nonmutating); - s << "\nnonmutating = " << (nonmutating ? "true" : "false"); + bool idempotent; + stream.read(idempotent); + s << "\nidempotent = " << (idempotent ? "true" : "false"); Int sz; stream.readSize(sz); s << "\ncontext = "; |