summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/IncomingAsync.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-05-04 17:25:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-05-04 17:25:23 +0000
commite95f3f732745314c7cfe3892477418898fdf6ce8 (patch)
treed2eed905621c03942d88026b7b94a0ce3fa4c691 /cpp/src/Ice/IncomingAsync.cpp
parentfixing log messages (diff)
downloadice-e95f3f732745314c7cfe3892477418898fdf6ce8.tar.bz2
ice-e95f3f732745314c7cfe3892477418898fdf6ce8.tar.xz
ice-e95f3f732745314c7cfe3892477418898fdf6ce8.zip
More changes wrt string conversion
Diffstat (limited to 'cpp/src/Ice/IncomingAsync.cpp')
-rw-r--r--cpp/src/Ice/IncomingAsync.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/src/Ice/IncomingAsync.cpp b/cpp/src/Ice/IncomingAsync.cpp
index d8c1f573a6a..701883b185a 100644
--- a/cpp/src/Ice/IncomingAsync.cpp
+++ b/cpp/src/Ice/IncomingAsync.cpp
@@ -142,19 +142,18 @@ IceInternal::IncomingAsync::__exception(const Exception& exc)
assert(false);
}
- _os.write(ex.id.name, false);
- _os.write(ex.id.category, false);
+ ex.id.__write(&_os);
//
// For compatibility with the old FacetPath.
//
if(ex.facet.empty())
{
- _os.write(static_cast<string*>(0), static_cast<string*>(0), false);
+ _os.write(static_cast<string*>(0), static_cast<string*>(0));
}
else
{
- _os.write(&ex.facet, &ex.facet + 1, false);
+ _os.write(&ex.facet, &ex.facet + 1);
}
_os.write(ex.operation, false);