diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-05-22 03:30:46 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-22 03:30:46 +0200 |
commit | c3f6d6757a0923428a82ff617c10635d4ff4b184 (patch) | |
tree | 0e34d596e9b2c8c9bd2a608cceee0984e854ff65 /src/util.h | |
parent | 9a34ec5fbb4b55413dc9d610b636fe760d34ecd7 (diff) |
manager: canonicalize search paths and filter out non-existing paths and those pointing to the same fs directory
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 93d67081b7..ccb9769256 100644 --- a/src/util.h +++ b/src/util.h @@ -138,7 +138,9 @@ bool is_path(const char *p); bool path_is_absolute(const char *p); char *path_make_absolute(const char *p, const char *prefix); char *path_make_absolute_cwd(const char *p); + char **strv_path_make_absolute_cwd(char **l); +char **strv_path_canonicalize(char **l); int reset_all_signal_handlers(void); |