summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Outgoing.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2003-01-30 16:17:35 +0000
committerMarc Laukien <marc@zeroc.com>2003-01-30 16:17:35 +0000
commitee691ff3fa0882ffa02117b5156f76e5af2ea9be (patch)
tree5aa661cbb4a0d521512e15631dec2b066719f01c /cpp/src/Ice/Outgoing.cpp
parentdisable SSLv2 (diff)
downloadice-ee691ff3fa0882ffa02117b5156f76e5af2ea9be.tar.bz2
ice-ee691ff3fa0882ffa02117b5156f76e5af2ea9be.tar.xz
ice-ee691ff3fa0882ffa02117b5156f76e5af2ea9be.zip
compression cleanup
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r--cpp/src/Ice/Outgoing.cpp4
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;
}