Module: wine Branch: master Commit: 4981b5b4466bfba3364bb4af1bf054a5df8be2b4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4981b5b4466bfba3364bb4af1b... Author: Bruno Jesus <00cpxxx(a)gmail.com> Date: Fri Sep 6 09:14:06 2013 -0300 ws2_32: Remove a FIXME message. --- dlls/ws2_32/socket.c | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index d1256c1..ed55b64 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -1649,11 +1649,7 @@ static INT WS_EnterSingleProtocolW( INT protocol, WSAPROTOCOL_INFOW* info ) break; default: - if ((protocol == ISOPROTO_TP4) || (protocol == NSPROTO_SPX)) - FIXME("Protocol <%s> not implemented\n", - (protocol == ISOPROTO_TP4) ? "ISOPROTO_TP4" : "NSPROTO_SPX"); - else - FIXME("unknown Protocol <0x%08x>\n", protocol); + FIXME("unknown Protocol <0x%08x>\n", protocol); return SOCKET_ERROR; } return 1;