ws2_32: Fix a comment.

This commit is contained in:
André Hentschel 2009-11-09 20:08:19 +01:00 committed by Alexandre Julliard
parent 0228008bb8
commit 905dc0c8fc
1 changed files with 1 additions and 1 deletions

View File

@ -987,7 +987,7 @@ static void test_set_getsockopt(void)
ok( !err, "get/setsockopt(SO_RCVTIMEO) failed error: %d\n", WSAGetLastError());
ok( timeout == SOCKTIMEOUT1, "getsockopt(SO_RCVTIMEO) returned wrong value %d\n", timeout);
/* SO_SNDTIMEO */
timeout = SOCKTIMEOUT2; /* 54 seconds. See remark above */
timeout = SOCKTIMEOUT2; /* 997 seconds. See remark above */
size = sizeof(timeout);
err = setsockopt(s, SOL_SOCKET, SO_SNDTIMEO, (char *) &timeout, size);
if( !err)