diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-02-03 11:02:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 11:02:28 +0100 |
commit | 5c1d991f4080497b0300943bd5b0f65e55cf550a (patch) | |
tree | b37e7e444b21ce622d07129fca2b361d585229e0 /src/shared/dropin.h | |
parent | ce283b8887455408d5e3178fb6651eeb535d632f (diff) | |
parent | 17e78d1825bcc6cb9af25c9b1598ef32c82da6af (diff) |
Merge pull request #5213 from keszybz/systemctl-root-cat
Two fixes to path lookup when --root is used
Diffstat (limited to 'src/shared/dropin.h')
-rw-r--r-- | src/shared/dropin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/dropin.h b/src/shared/dropin.h index c1936f397b..761b250886 100644 --- a/src/shared/dropin.h +++ b/src/shared/dropin.h @@ -45,6 +45,7 @@ typedef int (*dependency_consumer_t)(UnitDependency dependency, void *arg); int unit_file_process_dir( + const char *original_root, Set * unit_path_cache, const char *unit_path, const char *name, @@ -55,6 +56,7 @@ int unit_file_process_dir( char ***strv); int unit_file_find_dropin_paths( + const char *original_root, char **lookup_path, Set *unit_path_cache, Set *names, |