From: David Tardon Date: Tue, 27 Jun 2023 12:39:33 +0000 (+0200) Subject: bus-polkit: drop unused argument X-Git-Tag: v254-rc2~17^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f7195ef3c1caebf4d55d9436b32ff81cb928b6c;p=thirdparty%2Fsystemd.git bus-polkit: drop unused argument --- diff --git a/src/shared/bus-polkit.c b/src/shared/bus-polkit.c index 879d3c28908..904d775c178 100644 --- a/src/shared/bus-polkit.c +++ b/src/shared/bus-polkit.c @@ -266,7 +266,6 @@ static int process_polkit_response( sd_bus_message *call, const char *action, const char **details, - Hashmap **registry, sd_bus_error *ret_error) { int authorized, challenge, r; @@ -274,7 +273,6 @@ static int process_polkit_response( assert(q); assert(call); assert(action); - assert(registry); assert(ret_error); assert(q->action); @@ -342,7 +340,7 @@ int bus_verify_polkit_async( /* This is the second invocation of this function, and there's already a response from * polkit, let's process it */ if (q) - return process_polkit_response(q, call, action, details, registry, ret_error); + return process_polkit_response(q, call, action, details, ret_error); #endif r = sd_bus_query_sender_privilege(call, capability);