Changeset 31104 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jul 26, 2010 11:01:06 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/socket.cpp
r31103 r31104 258 258 { 259 259 #ifdef RT_OS_WINDOWS 260 if (ioctlsocket(pThis->hNative, FIONBIO, !fBlocking))260 if (ioctlsocket(pThis->hNative, FIONBIO, fBlocking ? 0 : 1)) 261 261 #else 262 262 if (fcntl(pThis->hNative, F_SETFL, O_NONBLOCK))
Note:
See TracChangeset
for help on using the changeset viewer.