libmicrohttpd

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

commit f126592e0f46a8eab5b478b17f037b77e42bad09
parent 7d8babba48bd6373fe2667a294d49005c0aedd4c
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Wed, 25 Aug 2021 22:03:38 +0300

test_quiesce: fixed dead assignment

Diffstat:
Msrc/testcurl/test_quiesce.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/testcurl/test_quiesce.c b/src/testcurl/test_quiesce.c @@ -338,7 +338,7 @@ testGet (int type, int pool_count, int poll_flag) /* at this point, the forked server quit, and the new * server has quiesced, so new requests should fail */ - if (CURLE_OK == (errornum = curl_easy_perform (c))) + if (CURLE_OK == curl_easy_perform (c)) { fprintf (stderr, "curl_easy_perform should fail\n"); curl_easy_cleanup (c);