]> git.saurik.com Git - wxWidgets.git/commitdiff
PATCH: [ 1033006 ] Fix: socket s timeout of < 1s doesnt work
authorRyan Norton <wxprojects@comcast.net>
Fri, 24 Sep 2004 05:48:24 +0000 (05:48 +0000)
committerRyan Norton <wxprojects@comcast.net>
Fri, 24 Sep 2004 05:48:24 +0000 (05:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29306 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/gsocket.cpp

index 488b28e62b94acf1b29462bbd90845d6992a88e7..a1ceb862e3dee93d68f70917626f9647ed923ddb 100644 (file)
@@ -923,7 +923,7 @@ GSocketEventFlags GSocket::Select(GSocketEventFlags flags)
 
     /* Do not use a static struct, Linux can garble it */
     tv.tv_sec = m_timeout / 1000;
 
     /* Do not use a static struct, Linux can garble it */
     tv.tv_sec = m_timeout / 1000;
-    tv.tv_usec = (m_timeout % 1000) / 1000;
+    tv.tv_usec = (m_timeout % 1000) * 1000;
 
     FD_ZERO(&readfds);
     FD_ZERO(&writefds);
 
     FD_ZERO(&readfds);
     FD_ZERO(&writefds);