Commit 0d5bcdae authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

ws2_32: Add a comment to ioctlsocket about 'bogus' ioctl 0x667e.

parent 888c930f
......@@ -2332,6 +2332,9 @@ int WINAPI WS_ioctlsocket(SOCKET s, long cmd, u_long *argp)
default:
/* Netscape tries hard to use bogus ioctl 0x667e */
/* FIXME: 0x667e above is ('f' << 8) | 126, and is a low word of
* FIONBIO (_IOW('f', 126, u_long)), how that should be handled?
*/
WARN("\tunknown WS_IOCTL cmd (%08lx)\n", cmd);
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment