diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 09:15:31 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 09:15:31 +0000 |
commit | f50b103aef8960aba3b81c1dfc8628b3aeb744c1 (patch) | |
tree | efcd75359a9002d2266032a0662d21cd7f91854f /cppe/src/IceE/Outgoing.cpp | |
parent | Fixed bug where non ASCII characters would be used for the category (diff) | |
download | ice-f50b103aef8960aba3b81c1dfc8628b3aeb744c1.tar.bz2 ice-f50b103aef8960aba3b81c1dfc8628b3aeb744c1.tar.xz ice-f50b103aef8960aba3b81c1dfc8628b3aeb744c1.zip |
Synced with Ice for C++ changes.
Diffstat (limited to 'cppe/src/IceE/Outgoing.cpp')
-rw-r--r-- | cppe/src/IceE/Outgoing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/Outgoing.cpp b/cppe/src/IceE/Outgoing.cpp index 1588adf048e..0da4ad89209 100644 --- a/cppe/src/IceE/Outgoing.cpp +++ b/cppe/src/IceE/Outgoing.cpp @@ -56,7 +56,7 @@ IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const st case Reference::ModeTwoway: case Reference::ModeOneway: { - _stream.writeBlob(&(_connection->getRequestHeader()[0]), headerSize + sizeof(Int)); + _stream.writeBlob(requestHdr, sizeof(requestHdr)); break; } |