summaryrefslogtreecommitdiff
path: root/src/core/dbus-scope.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-07-20 13:39:23 +0200
committerLennart Poettering <lennart@poettering.net>2016-07-20 14:35:15 +0200
commitf4b0fb236ba85f4aab483d3749a90ab3a85ed1a3 (patch)
treeeadf836beb3652692fd32806c2a713fb11982fec /src/core/dbus-scope.c
parent0d5b4810929f3e224c392ede913bb81042800101 (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.
Diffstat (limited to 'src/core/dbus-scope.c')
-rw-r--r--src/core/dbus-scope.c2
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);
}