From 7d8da2c9641c584ff977493eeb8148300dce8759 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Thu, 19 Jun 2014 19:07:02 -0700 Subject: shared: rename path_strv_canonicalize_absolute functions Since 12ed81d9 path_strv_canonicalize_absolute leaves the search list relative to the given root directory instead of resolving paths to their true location as the name implies. To better reflect this behavior rename to the less strongly worded path_strv_resolve. --- src/shared/conf-files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shared/conf-files.c') diff --git a/src/shared/conf-files.c b/src/shared/conf-files.c index 59bc8ceed9..44e137e84c 100644 --- a/src/shared/conf-files.c +++ b/src/shared/conf-files.c @@ -110,7 +110,7 @@ static int conf_files_list_strv_internal(char ***strv, const char *suffix, const assert(suffix); /* This alters the dirs string array */ - if (!path_strv_canonicalize_absolute_uniq(dirs, root)) + if (!path_strv_resolve_uniq(dirs, root)) return -ENOMEM; fh = hashmap_new(string_hash_func, string_compare_func); -- cgit v1.2.3-54-g00ecf