diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-02-02 00:06:18 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-02-02 00:06:18 +0100 |
commit | 49bfc8774bf900fb2239a9b70b951aedccbfed5a (patch) | |
tree | a9568c2f49824df4b6add75f0a1882103a8c3ffa /src/basic/path-util.h | |
parent | 1d0106996c2f80cdd0510206b9fd2d81d3fcd0cc (diff) | |
download | systemd-49bfc8774bf900fb2239a9b70b951aedccbfed5a.tar.gz |
fs-util: unify code we use to check if dirent's d_name is "." or ".."
We use different idioms at different places. Let's replace this is the
one true new idiom, that is even a bit faster...
Diffstat (limited to 'src/basic/path-util.h')
-rw-r--r-- | src/basic/path-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/basic/path-util.h b/src/basic/path-util.h index 349cdac7d6..35aef3adc8 100644 --- a/src/basic/path-util.h +++ b/src/basic/path-util.h @@ -141,3 +141,5 @@ bool is_device_path(const char *path); bool is_deviceallow_pattern(const char *path); int systemd_installation_has_version(const char *root, unsigned minimal_version); + +bool dot_or_dot_dot(const char *path); |