diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-20 11:07:06 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-12-20 11:07:06 -0500 |
commit | 5c069ee466820daf2ccf90426dbcda2dda1f2012 (patch) | |
tree | 66f65c467a3756e865de81e1a078a6edb395190a /src/shared/util.h | |
parent | 1ebbd909119e41fe62ad680bad6199e0971e3402 (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.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 1ce09c7e00..8cdb79cd8f 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -193,7 +193,7 @@ char *xescape(const char *s, const char *bad); bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) _pure_; -bool ignore_file(const char *filename) _pure_; +bool hidden_file(const char *filename) _pure_; int dev_urandom(void *p, size_t n); void random_bytes(void *p, size_t n); |