diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-04 20:46:38 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-04 20:46:38 +0000 |
commit | 890b472178dd19f083ed055c8de55f35f3c32b6a (patch) | |
tree | e2ad265f234bdebc1372ad45ef5c205448b8f9dd /cpp/src | |
parent | fixed marshaling bug for Ice::Object (diff) | |
download | ice-890b472178dd19f083ed055c8de55f35f3c32b6a.tar.bz2 ice-890b472178dd19f083ed055c8de55f35f3c32b6a.tar.xz ice-890b472178dd19f083ed055c8de55f35f3c32b6a.zip |
fixes
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/TraceUtil.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/TraceUtil.cpp b/cpp/src/Ice/TraceUtil.cpp index f0ef9e82316..089cf26a9a0 100644 --- a/cpp/src/Ice/TraceUtil.cpp +++ b/cpp/src/Ice/TraceUtil.cpp @@ -71,7 +71,7 @@ printRequestHeader(ostream& s, BasicStream& stream) { string identity; string facet; - Byte gotProxy; + bool gotProxy; stream.read(gotProxy); s << "\naddressing = " << static_cast<int>(gotProxy); if (gotProxy) @@ -93,6 +93,9 @@ printRequestHeader(ostream& s, BasicStream& stream) string operation; stream.read(operation); s << "\noperation = " << operation; + bool nonmutating; + stream.read(nonmutating); + s << "\nnonmutating = " << (nonmutating ? "true" : "false"); Int sz; stream.read(sz); s << "\ncontext = "; |