diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-12-03 19:55:51 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-12-03 19:55:51 +0100 |
commit | a6aa89122d2fa5e811a72200773068c13bfffea2 (patch) | |
tree | bf75aa373cf240ea0130daaa726423da88520970 /src/core/dbus.c | |
parent | 0e7be1293fe70eed47b20f70f74a2a67fc87be17 (diff) |
bus: don't make use of the private bus socket if kdbus is available
Diffstat (limited to 'src/core/dbus.c')
-rw-r--r-- | src/core/dbus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/dbus.c b/src/core/dbus.c index cab7628ad0..25d83a6942 100644 --- a/src/core/dbus.c +++ b/src/core/dbus.c @@ -938,6 +938,10 @@ static int bus_init_private(Manager *m) { if (m->private_listen_fd >= 0) return 0; + /* We don't need the private socket if we have kdbus */ + if (m->kdbus_fd >= 0) + return 0; + if (m->running_as == SYSTEMD_SYSTEM) { /* We want the private bus only when running as init */ |