summaryrefslogtreecommitdiff
path: root/src/login/logind.c
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-06-19 10:17:56 +0200
committerSven Eden <yamakuzure@gmx.net>2017-06-19 10:17:56 +0200
commit8ba463e9bdde6e98e36124a5b2cf49ba1a2f7b88 (patch)
tree639656f65fb4ed4a6b1d4345343765c8df963030 /src/login/logind.c
parentd22c4385791244b245652a6ddaeed4f20d3d1137 (diff)
Prep v231.2: Apply some minor style fixes
Diffstat (limited to 'src/login/logind.c')
-rw-r--r--src/login/logind.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/login/logind.c b/src/login/logind.c
index 046caf7be..77a11bbfe 100644
--- a/src/login/logind.c
+++ b/src/login/logind.c
@@ -52,7 +52,6 @@
static void manager_free(Manager *m);
static void manager_reset_config(Manager *m) {
-
#if 0 /// elogind does not support autospawning of vts
m->n_autovts = 6;
m->reserve_vt = 6;
@@ -83,7 +82,6 @@ static void manager_reset_config(Manager *m) {
m->kill_only_users = strv_free(m->kill_only_users);
m->kill_exclude_users = strv_free(m->kill_exclude_users);
-
#if 1 /// elogind needs an Add-On for sleep configuration
elogind_manager_reset_config(m);
#endif // 1
@@ -122,7 +120,6 @@ static Manager *manager_new(void) {
if (r < 0)
goto fail;
#endif // 1
-
m->udev = udev_new();
if (!m->udev)
goto fail;
@@ -214,7 +211,6 @@ static void manager_free(Manager *m) {
#if 0 /// elogind does not support autospawning of vts
safe_close(m->reserve_vt_fd);
#endif // 0
-
#if 1 /// elogind has to free its own data
elogind_manager_free(m);
#endif // 1
@@ -732,12 +728,14 @@ static int manager_connect_bus(Manager *m) {
if (r < 0)
return log_error_errno(r, "Failed to attach bus to event loop: %m");
-#if 1 /// elogind has to setup its release agent
+#if 0 /// elogind has to setup its release agent
+ return 0;
+#else
elogind_bus_setup_system(m);
r = elogind_setup_cgroups_agent(m);
-#endif // 1
return r;
+#endif // 0
}
static int manager_vt_switch(sd_event_source *src, const struct signalfd_siginfo *si, void *data) {
@@ -1287,8 +1285,7 @@ finish:
"STOPPING=1\n"
"STATUS=Shutting down...");
- if (m)
- manager_free(m);
+ manager_free(m);
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}