diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-21 18:47:24 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-21 18:47:24 +0000 |
commit | da5328137291f4bcc0561d8ffdec6e4ac5fb3b51 (patch) | |
tree | 09209e70d779c23705d27403060e563b33a57184 /cppe/src | |
parent | The incoming object is now an attribute of the connection. (diff) | |
download | ice-da5328137291f4bcc0561d8ffdec6e4ac5fb3b51.tar.bz2 ice-da5328137291f4bcc0561d8ffdec6e4ac5fb3b51.tar.xz ice-da5328137291f4bcc0561d8ffdec6e4ac5fb3b51.zip |
Removed OutgoingM
Diffstat (limited to 'cppe/src')
-rwxr-xr-x | cppe/src/IceE/Connection.cpp | 4 |
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) |