From: Michael Tremer Date: Wed, 25 Jun 2025 16:13:27 +0000 (+0000) Subject: client: Don't let the HTTP client think it is running standalone X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e68e226a3e32b9fe704dfbee4526389036c5511;p=pakfire.git client: Don't let the HTTP client think it is running standalone Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/client.c b/src/pakfire/client.c index dc293dbd..63f7be4c 100644 --- a/src/pakfire/client.c +++ b/src/pakfire/client.c @@ -493,7 +493,7 @@ int pakfire_client_create(struct pakfire_client** client, goto ERROR; // Create a new HTTP client - r = pakfire_httpclient_create(&self->httpclient, self->ctx, NULL); + r = pakfire_httpclient_create(&self->httpclient, self->ctx, self->loop); if (r < 0) goto ERROR;