From da5328137291f4bcc0561d8ffdec6e4ac5fb3b51 Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Tue, 21 Feb 2006 18:47:24 +0000 Subject: Removed OutgoingM --- cppe/src/IceE/Connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cppe/src/IceE/Connection.cpp') 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) -- cgit v1.2.3