summaryrefslogtreecommitdiffstats
path: root/src/locale/localed.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-11-22 22:12:55 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-11-22 22:22:30 +0100
commitaf7865c1b7298f531070ca02281408b52b4c5df2 (patch)
tree657caa93ce69f2112d909a613dea0148c40a0f6d /src/locale/localed.c
parentlocale: rename context_free() to context_clear() (diff)
downloadsystemd-af7865c1b7298f531070ca02281408b52b4c5df2.tar.xz
systemd-af7865c1b7298f531070ca02281408b52b4c5df2.zip
locale: store polkit_registry in Context
Diffstat (limited to 'src/locale/localed.c')
-rw-r--r--src/locale/localed.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/locale/localed.c b/src/locale/localed.c
index b9dffeae5a..6174132a1d 100644
--- a/src/locale/localed.c
+++ b/src/locale/localed.c
@@ -26,8 +26,6 @@
#include "strv.h"
#include "user-util.h"
-static Hashmap *polkit_registry = NULL;
-
static int locale_update_system_manager(Context *c, sd_bus *bus) {
_cleanup_free_ char **l_unset = NULL;
_cleanup_strv_free_ char **l_set = NULL;
@@ -362,7 +360,7 @@ static int method_set_locale(sd_bus_message *m, void *userdata, sd_bus_error *er
NULL,
interactive,
UID_INVALID,
- &polkit_registry,
+ &c->polkit_registry,
error);
if (r < 0)
return r;
@@ -433,7 +431,7 @@ static int method_set_vc_keyboard(sd_bus_message *m, void *userdata, sd_bus_erro
NULL,
interactive,
UID_INVALID,
- &polkit_registry,
+ &c->polkit_registry,
error);
if (r < 0)
return r;
@@ -626,7 +624,7 @@ static int method_set_x11_keyboard(sd_bus_message *m, void *userdata, sd_bus_err
NULL,
interactive,
UID_INVALID,
- &polkit_registry,
+ &c->polkit_registry,
error);
if (r < 0)
return r;
@@ -762,7 +760,5 @@ int main(int argc, char *argv[]) {
log_error_errno(r, "Failed to run event loop: %m");
finish:
- bus_verify_polkit_async_registry_free(polkit_registry);
-
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}