diff options
Diffstat (limited to 'src/shared/dropin.c')
-rw-r--r-- | src/shared/dropin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/dropin.c b/src/shared/dropin.c index 375a3ca600..d46e838044 100644 --- a/src/shared/dropin.c +++ b/src/shared/dropin.c @@ -6,7 +6,7 @@ #include <stdlib.h> #include "alloc-util.h" -#include "chase-symlinks.h" +#include "chase.h" #include "conf-files.h" #include "dirent-util.h" #include "dropin.h" @@ -105,7 +105,7 @@ static int unit_file_add_dir( /* This adds [original_root]/path to dirs, if it exists. */ - r = chase_symlinks(path, original_root, 0, &chased, NULL); + r = chase(path, original_root, 0, &chased, NULL); if (r == -ENOENT) /* Ignore -ENOENT, after all most units won't have a drop-in dir. */ return 0; if (r == -ENAMETOOLONG) { |