diff options
author | Marc Laukien <marc@zeroc.com> | 2004-01-19 22:54:25 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-01-19 22:54:25 +0000 |
commit | ea16464f3261045974c11d5dec9b1517f8f200e5 (patch) | |
tree | 774239f8f0f51c27f68e9c6f664e196c9c677103 /cpp/src/Ice/Connection.cpp | |
parent | shutdown fix (diff) | |
download | ice-ea16464f3261045974c11d5dec9b1517f8f200e5.tar.bz2 ice-ea16464f3261045974c11d5dec9b1517f8f200e5.tar.xz ice-ea16464f3261045974c11d5dec9b1517f8f200e5.zip |
fix
Diffstat (limited to 'cpp/src/Ice/Connection.cpp')
-rw-r--r-- | cpp/src/Ice/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Connection.cpp b/cpp/src/Ice/Connection.cpp index d03b16e70e4..683237d9466 100644 --- a/cpp/src/Ice/Connection.cpp +++ b/cpp/src/Ice/Connection.cpp @@ -306,7 +306,7 @@ IceInternal::Connection::waitUntilFinished() // We must wait a bit longer until we close this // connection. // - if(!timedWait(IceUtil::Time::milliSeconds(waitTime))) + if(!timedWait(waitTime)) { setState(StateClosed, CloseTimeoutException(__FILE__, __LINE__)); } |