diff options
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index a9725607a0c..95b32218e70 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -108,7 +108,7 @@ IceInternal::Outgoing::invoke() { IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this); - _connection->sendRequest(this, false, _reference->compress); + _connection->sendRequest(this, false); _state = StateInProgress; Int timeout = _connection->timeout(); @@ -175,7 +175,7 @@ IceInternal::Outgoing::invoke() case Reference::ModeOneway: case Reference::ModeDatagram: { - _connection->sendRequest(this, true, _reference->compress); + _connection->sendRequest(this, true); _state = StateInProgress; break; } |