summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Outgoing.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-07-06 14:49:47 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-07-06 14:49:47 +0000
commit8e48f2b8c9505ff088a72737dc7216d55732857a (patch)
tree7faaef71bf1a2216bfeb7dd7c0d6cd6e06985ca7 /cppe/src/IceE/Outgoing.cpp
parentfix shutdown bug. Fix bug with building IceE client side library with (diff)
downloadice-8e48f2b8c9505ff088a72737dc7216d55732857a.tar.bz2
ice-8e48f2b8c9505ff088a72737dc7216d55732857a.tar.xz
ice-8e48f2b8c9505ff088a72737dc7216d55732857a.zip
_NO_ -> _HAS_
Diffstat (limited to 'cppe/src/IceE/Outgoing.cpp')
-rw-r--r--cppe/src/IceE/Outgoing.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/Outgoing.cpp b/cppe/src/IceE/Outgoing.cpp
index 15544e45aee..fadd564fd90 100644
--- a/cppe/src/IceE/Outgoing.cpp
+++ b/cppe/src/IceE/Outgoing.cpp
@@ -51,7 +51,7 @@ IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const st
break;
}
-#ifndef ICEE_NO_BATCH
+#ifdef ICEE_HAS_BATCH
case Reference::ModeBatchOneway:
{
_connection->prepareBatchRequest(&_os);
@@ -230,7 +230,7 @@ IceInternal::Outgoing::invoke()
break;
}
-#ifndef ICEE_NO_BATCH
+#ifdef ICEE_HAS_BATCH
case Reference::ModeBatchOneway:
{
//
@@ -258,7 +258,7 @@ IceInternal::Outgoing::abort(const LocalException& ex)
// notify the connection about that we give up ownership of the
// batch stream.
//
-#ifndef ICEE_NO_BATCH
+#ifdef ICEE_HAS_BATCH
if(_reference->getMode() == Reference::ModeBatchOneway)
{
_connection->abortBatchRequest();