Michael Stefaniuc : ws2_32: Fix test output string to match the test.
Module: wine Branch: master Commit: af1986d6ccaeb6b170e7ff994f88be4b65c2b06a URL: http://source.winehq.org/git/wine.git/?a=commit;h=af1986d6ccaeb6b170e7ff994f... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Mon May 5 22:45:05 2008 +0200 ws2_32: Fix test output string to match the test. --- dlls/ws2_32/tests/sock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index f511dd2..ce75811 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -1664,7 +1664,7 @@ static void test_extendedSocketOptions(void) ok(ret == 0, "getsockopt failed to query SO_MAX_MSG_SIZE, return value is 0x%08x\n", ret); ok((optval == 65507) || (optval == 65527), - "SO_MAX_MSG_SIZE reported %d, expected 65507 or 65507\n", optval); + "SO_MAX_MSG_SIZE reported %d, expected 65507 or 65527\n", optval); optlen = sizeof(LINGER); ret = getsockopt(sock, SOL_SOCKET, SO_LINGER, (char *)&linger_val, &optlen);
participants (1)
-
Alexandre Julliard