X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fconf-files.c;h=64ce8a0e57fb70d4c90479b2d3f37528f45a3dfd;hb=cba2ef02722114da2b730d57f1e3bb43013d8921;hp=44e137e84c4118d78e19956f59208d322995dcfb;hpb=7d8da2c9641c584ff977493eeb8148300dce8759;p=elogind.git diff --git a/src/shared/conf-files.c b/src/shared/conf-files.c index 44e137e84..64ce8a0e5 100644 --- a/src/shared/conf-files.c +++ b/src/shared/conf-files.c @@ -37,20 +37,16 @@ #include "hashmap.h" #include "conf-files.h" -static int files_add(Hashmap *h, const char *dirpath, const char *suffix, const char *root) { +static int files_add(Hashmap *h, const char *root, const char *path, const char *suffix) { _cleanup_closedir_ DIR *dir = NULL; + char *dirpath; - assert(dirpath); + assert(path); assert(suffix); - if (isempty(root)) - dir = opendir(dirpath); - else { - const char *p; + dirpath = strappenda(root ? root : "", path); - p = strappenda3(root, "/", dirpath); - dir = opendir(p); - } + dir = opendir(dirpath); if (!dir) { if (errno == ENOENT) return 0; @@ -118,7 +114,7 @@ static int conf_files_list_strv_internal(char ***strv, const char *suffix, const return -ENOMEM; STRV_FOREACH(p, dirs) { - r = files_add(fh, *p, suffix, root); + r = files_add(fh, root, *p, suffix); if (r == -ENOMEM) { hashmap_free_free(fh); return r;