diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-14 23:12:40 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-16 00:30:33 -0500 |
commit | 1a7f1b385cd9de8a0da934fadc379860f914ef33 (patch) | |
tree | 06ff69134de3f57f875679e4fa418497a98a808d /src/core/unit.c | |
parent | 6a057a99854268afe19738022205416bd5a0f4b5 (diff) |
Move dropin listing to shared
No functional change. This is in preparation for using this in
systemctl in the future.
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index 8cec0e7e7f..a2f37282db 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2894,7 +2894,7 @@ bool unit_need_daemon_reload(Unit *u) { return true; } - t = unit_find_dropin_paths(u); + (void) unit_find_dropin_paths(u, &t); loaded_cnt = strv_length(t); current_cnt = strv_length(u->dropin_paths); |