summaryrefslogtreecommitdiff
path: root/cppe
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-02-21 18:47:24 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-02-21 18:47:24 +0000
commitda5328137291f4bcc0561d8ffdec6e4ac5fb3b51 (patch)
tree09209e70d779c23705d27403060e563b33a57184 /cppe
parentThe incoming object is now an attribute of the connection. (diff)
downloadice-da5328137291f4bcc0561d8ffdec6e4ac5fb3b51.tar.bz2
ice-da5328137291f4bcc0561d8ffdec6e4ac5fb3b51.tar.xz
ice-da5328137291f4bcc0561d8ffdec6e4ac5fb3b51.zip
Removed OutgoingM
Diffstat (limited to 'cppe')
-rwxr-xr-xcppe/src/IceE/Connection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/Connection.cpp b/cppe/src/IceE/Connection.cpp
index ee772f30f21..cc8bd097a8b 100755
--- a/cppe/src/IceE/Connection.cpp
+++ b/cppe/src/IceE/Connection.cpp
@@ -487,13 +487,13 @@ Ice::Connection::sendRequest(BasicStream* os, Outgoing* out)
//
Int tout = timeout();
IceUtil::Time expireTime;
- if(tout >= 0)
+ if(tout > 0)
{
expireTime = IceUtil::Time::now() + IceUtil::Time::milliSeconds(tout);
}
while(out->state() == Outgoing::StateInProgress && !timedOut)
{
- if(tout >= 0)
+ if(tout > 0)
{
IceUtil::Time now = IceUtil::Time::now();
if(now < expireTime)