Commit 75b52514 authored by David Hammerton's avatar David Hammerton Committed by Alexandre Julliard

Fixed typos.

parent db1a09d6
...@@ -2183,10 +2183,10 @@ SOCKET WINAPI WSOCK32_socket(INT af, INT type, INT protocol) ...@@ -2183,10 +2183,10 @@ SOCKET WINAPI WSOCK32_socket(INT af, INT type, INT protocol)
type=SOCK_STREAM; type=SOCK_STREAM;
break; break;
case WS_SOCK_DGRAM: case WS_SOCK_DGRAM:
type=SOCK_STREAM; type=SOCK_DGRAM;
break; break;
case WS_SOCK_RAW: case WS_SOCK_RAW:
type=SOCK_STREAM; type=SOCK_RAW;
break; break;
default: SetLastError(WSAESOCKTNOSUPPORT); default: SetLastError(WSAESOCKTNOSUPPORT);
return INVALID_SOCKET; return INVALID_SOCKET;
......
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