diff options
author | Ivan Shapovalov <intelfx100@gmail.com> | 2014-12-19 17:08:07 +0300 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-05 11:13:30 -0500 |
commit | 60d27f1916c90871c063819a6e7d586c7a663789 (patch) | |
tree | 3affd63ba875e2491f6870c99e0e8c3fe1d5a80c /src/shared/install.c | |
parent | 69c4e2771ec58d111191afe397a402e488e223ba (diff) |
path-lookup, systemctl: export lookup_paths_init_from_scope() from shared/install.c and use it
Diffstat (limited to 'src/shared/install.c')
-rw-r--r-- | src/shared/install.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/shared/install.c b/src/shared/install.c index 3b065445b0..37191a7c71 100644 --- a/src/shared/install.c +++ b/src/shared/install.c @@ -58,22 +58,6 @@ static int in_search_path(const char *path, char **search) { return strv_contains(search, parent); } -static int lookup_paths_init_from_scope(LookupPaths *paths, - UnitFileScope scope, - const char *root_dir) { - assert(paths); - assert(scope >= 0); - assert(scope < _UNIT_FILE_SCOPE_MAX); - - zero(*paths); - - return lookup_paths_init(paths, - scope == UNIT_FILE_SYSTEM ? SYSTEMD_SYSTEM : SYSTEMD_USER, - scope == UNIT_FILE_USER, - root_dir, - NULL, NULL, NULL); -} - static int get_config_path(UnitFileScope scope, bool runtime, const char *root_dir, char **ret) { char *p = NULL; int r; |