diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-07-20 13:39:23 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-07-20 14:35:15 +0200 |
commit | f4b0fb236ba85f4aab483d3749a90ab3a85ed1a3 (patch) | |
tree | eadf836beb3652692fd32806c2a713fb11982fec | |
parent | 0d5b4810929f3e224c392ede913bb81042800101 (diff) |
core: make sure RequestStop signal is send directed
This was accidentally left commented out for debugging purposes, let's fix that
and make the signal directed again.
-rw-r--r-- | src/core/dbus-scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-scope.c b/src/core/dbus-scope.c index f557eedfc3..1abaf9f658 100644 --- a/src/core/dbus-scope.c +++ b/src/core/dbus-scope.c @@ -225,5 +225,5 @@ int bus_scope_send_request_stop(Scope *s) { if (r < 0) return r; - return sd_bus_send_to(UNIT(s)->manager->api_bus, m, /* s->controller */ NULL, NULL); + return sd_bus_send_to(UNIT(s)->manager->api_bus, m, s->controller, NULL); } |