From d663c170ebd38a7d6fe9e1e342ee6e3225c62668 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 25 Jun 2025 15:48:13 +0000 Subject: [PATCH] cli: Fix initializing the client Signed-off-by: Michael Tremer --- src/cli/lib/pakfire.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/lib/pakfire.c b/src/cli/lib/pakfire.c index 8218e0d6..c1da92fb 100644 --- a/src/cli/lib/pakfire.c +++ b/src/cli/lib/pakfire.c @@ -190,7 +190,7 @@ int cli_setup_client(struct pakfire_client** client, struct cli_global_args* arg goto ERROR; // Connect to the build service - r = pakfire_client_create(client, args->ctx, NULL, url, username); + r = pakfire_client_create(client, args->ctx, url, username); if (r < 0) { fprintf(stderr, "Could not setup the build service: %s\n", strerror(-r)); goto ERROR; -- 2.47.2