summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-12-04 20:46:38 +0000
committerMarc Laukien <marc@zeroc.com>2001-12-04 20:46:38 +0000
commit890b472178dd19f083ed055c8de55f35f3c32b6a (patch)
treee2ad265f234bdebc1372ad45ef5c205448b8f9dd /cpp/src
parentfixed marshaling bug for Ice::Object (diff)
downloadice-890b472178dd19f083ed055c8de55f35f3c32b6a.tar.bz2
ice-890b472178dd19f083ed055c8de55f35f3c32b6a.tar.xz
ice-890b472178dd19f083ed055c8de55f35f3c32b6a.zip
fixes
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/TraceUtil.cpp5
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 = ";