chiark / gitweb /
systemadm: implement basic control UI systemadm
[elogind.git] / main.c
diff --git a/main.c b/main.c
index be733f0cd2b570b7fcac8b1c9fccf5d360a87bfa..eb659c79fb77549c6c48127f90ac8ee35ec28e0a 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,5 +1,7 @@
 /*-*- Mode: C; c-basic-offset: 8 -*-*/
 
+#include <dbus/dbus.h>
+
 #include <stdio.h>
 #include <errno.h>
 #include <string.h>
@@ -16,7 +18,7 @@ int main(int argc, char *argv[]) {
 
         assert_se(set_unit_path("test1") >= 0);
 
-        if (!(m = manager_new()) < 0) {
+        if (!(m = manager_new())) {
                 log_error("Failed to allocate manager object: %s", strerror(ENOMEM));
                 goto finish;
         }
@@ -42,10 +44,10 @@ int main(int argc, char *argv[]) {
         printf("→ By jobs:\n");
         manager_dump_jobs(m, stdout, "\t");
 
-        /* if ((r = manager_loop(m)) < 0) { */
-        /*         log_error("Failed to run mainloop: %s", strerror(-r)); */
-        /*         goto finish; */
-        /* } */
+        if ((r = manager_loop(m)) < 0) {
+                log_error("Failed to run mainloop: %s", strerror(-r));
+                goto finish;
+        }
 
         retval = 0;
 
@@ -55,5 +57,7 @@ finish:
 
         log_debug("Exit.");
 
+        dbus_shutdown();
+
         return retval;
 }