diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-04 17:25:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-04 17:25:23 +0000 |
commit | e95f3f732745314c7cfe3892477418898fdf6ce8 (patch) | |
tree | d2eed905621c03942d88026b7b94a0ce3fa4c691 /cpp/src/Ice/IncomingAsync.cpp | |
parent | fixing log messages (diff) | |
download | ice-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.cpp | 7 |
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); |