diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-08-15 20:25:10 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-08-15 20:25:10 +0200 |
commit | b5af2aca120f1bf13cffc270803c2232918dd967 (patch) | |
tree | 69b8c2fcb5584ce2ef6970e03da5af55c7647eeb /src/core/dbus-unit.c | |
parent | def9a7aa0182e5ecca3ac61b26f75136a5c4f103 (diff) | |
parent | b39a2770ba55637da80e2e389222c59dbea73507 (diff) |
Merge commit 'b39a2770ba55637da80e2e389222c59dbea73507'
Diffstat (limited to 'src/core/dbus-unit.c')
-rw-r--r-- | src/core/dbus-unit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index 8f23fe76ce..2132f59faa 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -758,13 +758,13 @@ int bus_unit_queue_job( return r; if (bus == u->manager->api_bus) { - if (!j->subscribed) { - r = sd_bus_track_new(bus, &j->subscribed, NULL, NULL); + if (!j->clients) { + r = sd_bus_track_new(bus, &j->clients, NULL, NULL); if (r < 0) return r; } - r = sd_bus_track_add_sender(j->subscribed, message); + r = sd_bus_track_add_sender(j->clients, message); if (r < 0) return r; } |