diff options
-rw-r--r-- | color.c | 2 | ||||
-rw-r--r-- | eval.c | 2 |
2 files changed, 2 insertions, 2 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; @@ -126,7 +126,7 @@ bool eval_false(const struct expr *expr, struct eval_state *state) { */ bool eval_access(const struct expr *expr, struct eval_state *state) { struct BFTW *ftwbuf = state->ftwbuf; - return faccessat(ftwbuf->at_fd, ftwbuf->at_path, expr->idata, 0) == 0; + return faccessat(ftwbuf->at_fd, ftwbuf->at_path, expr->idata, AT_EACCESS) == 0; } /** |