From: Lennart Poettering Date: Wed, 20 Jul 2016 11:39:23 +0000 (+0200) Subject: core: make sure RequestStop signal is send directed X-Git-Tag: v231~28^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4b0fb236ba85f4aab483d3749a90ab3a85ed1a3;p=platform%2Fupstream%2Fsystemd.git 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. --- diff --git a/src/core/dbus-scope.c b/src/core/dbus-scope.c index f557eed..1abaf9f 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); }