Commit 42d3bd71 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ws2_32: Downgrade FIXME for WS_SIO_SET_COMPATIBILITY_MODE to a TRACE.

parent 27ae5738
......@@ -3483,6 +3483,10 @@ INT WINAPI WSAIoctl(SOCKET s,
HeapFree(GetProcessHeap(), 0, ipAddrTable);
return 0;
}
case WS_SIO_SET_COMPATIBILITY_MODE:
TRACE("WS_SIO_SET_COMPATIBILITY_MODE ignored\n");
WSASetLastError(WSAEOPNOTSUPP);
return SOCKET_ERROR;
case WS_SIO_UDP_CONNRESET:
FIXME("WS_SIO_UDP_CONNRESET stub\n");
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