chiark / gitweb /
systemadm: implement basic control UI systemadm
[elogind.git] / main.c
diff --git a/main.c b/main.c
index 26d327cfac08a7e46967efc0e3d4ba7118934828..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;
         }
@@ -55,5 +57,7 @@ finish:
 
         log_debug("Exit.");
 
+        dbus_shutdown();
+
         return retval;
 }