From: Lennart Poettering Date: Tue, 17 Dec 2013 02:55:59 +0000 (+0100) Subject: busctl: on kdbus the bus driver is a service like any other, hence don't skip it X-Git-Tag: v209~862 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f83f897489eb5286ea52a71cfd1a66a52b3ae51f;p=elogind.git busctl: on kdbus the bus driver is a service like any other, hence don't skip it --- diff --git a/src/libsystemd-bus/busctl.c b/src/libsystemd-bus/busctl.c index 57bc83d1c..4e2e6aff2 100644 --- a/src/libsystemd-bus/busctl.c +++ b/src/libsystemd-bus/busctl.c @@ -108,10 +108,6 @@ static int list_bus_names(sd_bus *bus, char **argv) { if (arg_no_unique && (*i)[0] == ':') continue; - /* Skip the bus driver */ - if (streq(*i, "org.freedesktop.DBus")) - continue; - printf("%-*s", (int) max_i, *i); r = sd_bus_get_owner(bus, *i, SD_BUS_CREDS_UID|SD_BUS_CREDS_PID|SD_BUS_CREDS_COMM|SD_BUS_CREDS_UNIQUE_NAME, &creds);