summaryrefslogtreecommitdiffstats
path: root/server/monitor.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/monitor.c')
-rw-r--r--server/monitor.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/monitor.c b/server/monitor.c
index 0f92eceb4..b11e4e0c9 100644
--- a/server/monitor.c
+++ b/server/monitor.c
@@ -207,7 +207,10 @@ int start_monitor(TALLOC_CTX *mem_ctx,
/* Initialize D-BUS Server
* The monitor will act as a D-BUS server for all
* SSSD processes */
- monitor_dbus_init(ctx);
+ ret = monitor_dbus_init(ctx);
+ if (ret != EOK) {
+ return ret;
+ }
for (i = 0; ctx->services[i]; i++) {