summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2012-05-07 13:15:25 +0200
committerKay Sievers <kay@vrfy.org>2012-05-07 13:15:25 +0200
commitcd9556cc84523e2d515a8be2648e2a50fb6b2144 (patch)
tree004855b441e1463624253aba302ce692d2f56f64 /src
parenteecd1362f7f4de432483b5d77c56726c3621a83a (diff)
conf_files_list(): files-add() - do not canonicalize file names
File names in /etc, /run, /usr/lib are sorted/overridden by basename. Sorting things like "/dev/null" with the basename "null" in the hash of config files breaks the ordering and the overriding logic.
Diffstat (limited to 'src')
-rw-r--r--src/shared/util.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/shared/util.c b/src/shared/util.c
index fd2c5b075f..d86df17591 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -4877,7 +4877,7 @@ static int files_add(Hashmap *h, const char *path, const char *suffix) {
for (;;) {
int k;
- char *p, *f;
+ char *p;
k = readdir_r(dir, &buffer, &de);
if (k != 0) {
@@ -4896,17 +4896,10 @@ static int files_add(Hashmap *h, const char *path, const char *suffix) {
goto finish;
}
- f = canonicalize_file_name(p);
- if (!f) {
- log_error("Failed to canonicalize file name '%s': %m", p);
+ if (hashmap_put(h, file_name_from_path(p), p) <= 0) {
+ log_debug("Skip overridden file: %s.", p);
free(p);
- continue;
}
- free(p);
-
- log_debug("found: %s\n", f);
- if (hashmap_put(h, file_name_from_path(f), f) <= 0)
- free(f);
}
finish: