summaryrefslogtreecommitdiff
path: root/src/shared/dropin.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-12-19 20:03:36 +0100
committerLennart Poettering <lennart@poettering.net>2014-12-19 20:03:36 +0100
commita34bf9db5da0fdd6bdb14459e203dbe41ee99614 (patch)
treefa2d06993130a6cfe463b574e6659159c2e3635f /src/shared/dropin.c
parent358ba19e5e18304258f053e30e6120a3b6adf322 (diff)
util: rename ignore_file() to hidden_file()
hidden_file() is a bit more precise, since dot files usually shouldn't be ignored, but certainly be considered hidden.
Diffstat (limited to 'src/shared/dropin.c')
-rw-r--r--src/shared/dropin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/dropin.c b/src/shared/dropin.c
index 40e6fee1c..d1baad619 100644
--- a/src/shared/dropin.c
+++ b/src/shared/dropin.c
@@ -148,7 +148,7 @@ static int iterate_dir(
if (!de)
break;
- if (ignore_file(de->d_name))
+ if (hidden_file(de->d_name))
continue;
f = strjoin(path, "/", de->d_name, NULL);