X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Fconf-files.c;h=9ab08355e35cff0819462d4b2494d995643ff5d5;hp=e6ee97a978472662236732c99f48583ae03e817b;hb=d8d5781c1eb031477670facc132e198f8fddd56c;hpb=d5099efc47d4e6ac60816b5381a5f607ab03f06e diff --git a/src/shared/conf-files.c b/src/shared/conf-files.c index e6ee97a97..9ab08355e 100644 --- a/src/shared/conf-files.c +++ b/src/shared/conf-files.c @@ -19,13 +19,10 @@ along with systemd; If not, see . ***/ -#include #include -#include #include #include #include -#include #include #include "macro.h" @@ -44,7 +41,7 @@ static int files_add(Hashmap *h, const char *root, const char *path, const char assert(path); assert(suffix); - dirpath = strappenda(root ? root : "", path); + dirpath = strjoina(root ? root : "", path); dir = opendir(dirpath); if (!dir) { @@ -118,8 +115,8 @@ static int conf_files_list_strv_internal(char ***strv, const char *suffix, const if (r == -ENOMEM) { return r; } else if (r < 0) - log_debug("Failed to search for files in %s: %s", - *p, strerror(-r)); + log_debug_errno(r, "Failed to search for files in %s: %m", + *p); } files = hashmap_get_strv(fh);