diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-25 07:36:03 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-25 07:36:03 +0000 |
commit | 2f4c9826be0c5dddba75da9872a9a10a3141144f (patch) | |
tree | a202051e4762983b1621c6fea104e8711ce3eec4 /ace/SOCK_Connector.cpp | |
parent | 34a82afb8e57608987736008005af93b310a1417 (diff) | |
download | ATCD-2f4c9826be0c5dddba75da9872a9a10a3141144f.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/SOCK_Connector.cpp')
-rw-r--r-- | ace/SOCK_Connector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/SOCK_Connector.cpp b/ace/SOCK_Connector.cpp index 5d7335910a4..c0333cda598 100644 --- a/ace/SOCK_Connector.cpp +++ b/ace/SOCK_Connector.cpp @@ -112,8 +112,8 @@ ACE_SOCK_Connector::complete (ACE_SOCK_Stream &new_stream, // Win32 has a timing problem - if you check to see if the // connection has completed too fast, it will fail - so wait 1 // millisecond to let it catch up. - ACE_Time_Value tv (0, 1000); - ACE_OS::sleep (tv); + ACE_Time_Value time (0, 1000); + ACE_OS::sleep (time); #endif /* ACE_HAS_BROKEN_NON_BLOCKING_CONNECTS */ ACE_HANDLE h = ACE::handle_timed_complete (this->get_handle (), tv); |