Module: wine Branch: master Commit: b8e9bbd4d0b1fde7fbc27857b8453adb33c7e99f URL: http://source.winehq.org/git/wine.git/?a=commit;h=b8e9bbd4d0b1fde7fbc27857b8...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Fri Dec 27 13:49:27 2013 -0200
ws2_32/tests: Fix some test message typos.
---
dlls/ws2_32/tests/sock.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index 341b7e7..7bb39f7 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -2141,7 +2141,7 @@ static void test_WSADuplicateSocket(void) IPPROTO_TCP, info.iProtocol); ok(info.iAddressFamily == AF_INET, "expected family %d, received %d\n", AF_INET, info.iProtocol); - ok(info.iSocketType == SOCK_STREAM, "expected protocol %d, received %d\n", + ok(info.iSocketType == SOCK_STREAM, "expected type %d, received %d\n", SOCK_STREAM, info.iSocketType);
dupsock = WSASocketA(0, 0, 0, &info, 0, 0); @@ -2163,7 +2163,7 @@ static void test_WSADuplicateSocket(void) IPPROTO_UDP, info.iProtocol); ok(info.iAddressFamily == AF_INET, "expected family %d, received %d\n", AF_INET, info.iProtocol); - ok(info.iSocketType == SOCK_DGRAM, "expected protocol %d, received %d\n", + ok(info.iSocketType == SOCK_DGRAM, "expected type %d, received %d\n", SOCK_DGRAM, info.iSocketType);
memset(&addr, 0, sizeof(addr));