From: Michael Tremer Date: Fri, 27 Jun 2025 07:39:47 +0000 (+0000) Subject: tests: Fix compiling the testsuite X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3db9c01b5c3472229ce1891c082ff73a7adcf329;p=pakfire.git tests: Fix compiling the testsuite Signed-off-by: Michael Tremer --- diff --git a/tests/testsuite.c b/tests/testsuite.c index 9807c64b..f61a3a53 100644 --- a/tests/testsuite.c +++ b/tests/testsuite.c @@ -85,7 +85,7 @@ static int test_run(int i, struct test* t) { // Create a HTTP client (if requested) if (t->flags & TEST_WANTS_HTTPCLIENT) { - r = pakfire_httpclient_create(&t->httpclient, t->ctx); + r = pakfire_httpclient_create(&t->httpclient, t->ctx, 0); if (r < 0) { LOG("ERROR: Could not initialize the HTTP client: %s\n", strerror(-r)); goto ERROR;