diff options
Diffstat (limited to 'color.c')
-rw-r--r-- | color.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -346,7 +346,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, 0) == 0) { + if (faccessat(ftwbuf->at_fd, ftwbuf->at_path, F_OK, AT_EACCESS) == 0) { color = colors->link; } else { color = colors->orphan; |