From ecc7b3249050c17e089d6a812472d2923d572bcc Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 20 Sep 2017 18:46:55 -0400 Subject: util: Wrap faccessat() to fix some portability issues --- color.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'color.c') 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; -- cgit v1.2.3