Commit 89b82195 authored by Jeff Latimer's avatar Jeff Latimer Committed by Alexandre Julliard

ws2_32: Do not print an ERR message when returning WSAEWOULDBLOCK from WSAIoctl().

parent 04a9c9eb
......@@ -4957,7 +4957,7 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID
overlapped, completion);
if (status != WSAEOPNOTSUPP)
{
if (status == 0 || status == WSA_IO_PENDING)
if (status == 0 || status == WSA_IO_PENDING || status == WSAEWOULDBLOCK)
TRACE("-> %s request\n", debugstr_wsaioctl(code));
else
ERR("-> %s request failed with status 0x%x\n", debugstr_wsaioctl(code), status);
......
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