chiark / gitweb /
busctl: on kdbus the bus driver is a service like any other, hence don't skip it
authorLennart Poettering <lennart@poettering.net>
Tue, 17 Dec 2013 02:55:59 +0000 (03:55 +0100)
committerLennart Poettering <lennart@poettering.net>
Tue, 17 Dec 2013 14:45:31 +0000 (15:45 +0100)
src/libsystemd-bus/busctl.c

index 57bc83d1c19364f2d1082d6e45e0ec223e2cd9bc..4e2e6aff2606e30265f6b24fc7d341bf23f78834 100644 (file)
@@ -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);