1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-23 17:34:00 +03:00

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.
This commit is contained in:
Lennart Poettering 2016-07-20 13:39:23 +02:00
parent 0d5b481092
commit f4b0fb236b

View File

@ -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);
}