summaryrefslogtreecommitdiff
path: root/src/systemctl/systemctl.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-02-08 14:50:56 +0100
committerGitHub <noreply@github.com>2017-02-08 14:50:56 +0100
commitb6f08ecda90b5ccb6c9c09e5976a627f5918dc0b (patch)
tree27616a7d5adad15e007d3f01d291b20b76d75983 /src/systemctl/systemctl.c
parenta48dd3475bb0d5f3a88922cdce09ee8c63b6c0b8 (diff)
parentfbc42f133232fb92140a8039b2d643f6f0b63889 (diff)
Merge pull request #5231 from keszybz/mask-wants
Mask individual .wants/.requires symlinks
Diffstat (limited to 'src/systemctl/systemctl.c')
-rw-r--r--src/systemctl/systemctl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index 2964b4e6b2..5cb07739d4 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -2601,7 +2601,8 @@ static int unit_find_paths(
return log_error_errno(r, "Failed to add unit name: %m");
if (dropin_paths) {
- r = unit_file_find_dropin_paths(arg_root, lp->search_path, NULL, names, &dropins);
+ r = unit_file_find_dropin_conf_paths(arg_root, lp->search_path,
+ NULL, names, &dropins);
if (r < 0)
return r;
}