[WS2_32_APITESTS] Fix helper by not shutting down send. This way it breaks the test on windows also.

svn path=/trunk/; revision=72949
This commit is contained in:
Peter Hater 2016-10-10 06:48:56 +00:00
parent 91a772cfd5
commit 9017581a14

View file

@ -54,10 +54,10 @@ int GetRequestAndWait(SOCKET sck)
/* Send the GET request */
SCKTEST(send(sck, szGetRequest, strlen(szGetRequest), 0));
ok(iResult == strlen(szGetRequest), "iResult = %d\n", iResult);
#if 0 /* breaks windows too */
/* Shutdown the SEND connection */
SCKTEST(shutdown(sck, SD_SEND));
#endif
/* Wait until we're ready to read */
FD_ZERO(&readable);
FD_SET(sck, &readable);