diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-09-20 18:46:55 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-09-20 18:46:55 -0400 |
commit | ecc7b3249050c17e089d6a812472d2923d572bcc (patch) | |
tree | de926cbba87c789549c85a8b1a389d09a155f995 /eval.c | |
parent | bbbf8f6e296e3d80775d0ee0c41c445bbb721402 (diff) | |
download | bfs-ecc7b3249050c17e089d6a812472d2923d572bcc.tar.xz |
util: Wrap faccessat() to fix some portability issues
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,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, AT_EACCESS) == 0; + return xfaccessat(ftwbuf->at_fd, ftwbuf->at_path, expr->idata) == 0; } /** |