Commit 36c76573 authored by Joris Huizer's avatar Joris Huizer Committed by Alexandre Julliard

ws2_32/tests: Don't test function directly when reporting GetLastError().

parent 26f753ae
......@@ -3773,7 +3773,8 @@ static void test_WSARecv(void)
ling.l_onoff = 1;
ling.l_linger = 0;
ok(!setsockopt (src, SOL_SOCKET, SO_LINGER, (char *) &ling, sizeof(ling)), "Failed to set linger %d\n", GetLastError());
iret = setsockopt (src, SOL_SOCKET, SO_LINGER, (char *) &ling, sizeof(ling));
ok(!iret, "Failed to set linger %d\n", GetLastError());
iret = WSARecv(dest, &bufs, 1, &bytesReturned, &flags, &ov, NULL);
ok(iret == SOCKET_ERROR && GetLastError() == ERROR_IO_PENDING, "WSARecv failed - %d error %d\n", iret, GetLastError());
......
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