libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 1c1674149b3b89a31d2178099590d6d0e8b3fe85
parent 5398d8ba644dab2a5a24efaef9de7c9bc4b7e431
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sat, 25 Feb 2017 21:23:17 +0300

test_get: really test ability to stop race

Diffstat:
Msrc/testcurl/test_get.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/testcurl/test_get.c b/src/testcurl/test_get.c @@ -474,8 +474,7 @@ testStopRace (int poll_flag) struct MHD_Daemon *d; d = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION | MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_ERROR_LOG | poll_flag, - 1081, NULL, NULL, &ahc_echo, "GET", - MHD_OPTION_CONNECTION_TIMEOUT, 5, MHD_OPTION_END); + 1081, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END); if (d == NULL) return 16;