From: Jelle van der Waa Date: Tue, 6 May 2025 07:31:50 +0000 (+0200) Subject: shared: fix leftover bool value from flags conversion X-Git-Tag: v258-rc1~689^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F37346%2Fhead;p=thirdparty%2Fsystemd.git shared: fix leftover bool value from flags conversion Follow-up for 5c48335ef4cc1c930c86c6e893f3ab3e5472f7f6 --- diff --git a/src/shared/bus-polkit.c b/src/shared/bus-polkit.c index 0c61464ef0d..97d81e743c3 100644 --- a/src/shared/bus-polkit.c +++ b/src/shared/bus-polkit.c @@ -128,7 +128,7 @@ int bus_test_polkit( _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL, *reply = NULL; int authorized = false, challenge = false; - r = bus_message_new_polkit_auth_call_for_bus(call, action, details, /* flags = */ false, &request); + r = bus_message_new_polkit_auth_call_for_bus(call, action, details, /* flags = */ 0, &request); if (r < 0) return r;