summaryrefslogtreecommitdiffstats
path: root/color.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-09-20 18:46:55 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-09-20 18:46:55 -0400
commitecc7b3249050c17e089d6a812472d2923d572bcc (patch)
treede926cbba87c789549c85a8b1a389d09a155f995 /color.c
parentbbbf8f6e296e3d80775d0ee0c41c445bbb721402 (diff)
downloadbfs-ecc7b3249050c17e089d6a812472d2923d572bcc.tar.xz
util: Wrap faccessat() to fix some portability issues
Diffstat (limited to 'color.c')
-rw-r--r--color.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/color.c b/color.c
index 031741d..8df6a1f 100644
--- a/color.c
+++ b/color.c
@@ -351,7 +351,7 @@ static const char *file_color(const struct colors *colors, const char *filename,
break;
case S_IFLNK:
- if (faccessat(ftwbuf->at_fd, ftwbuf->at_path, F_OK, AT_EACCESS) == 0) {
+ if (xfaccessat(ftwbuf->at_fd, ftwbuf->at_path, F_OK) == 0) {
color = colors->link;
} else {
color = colors->orphan;