summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-11-22 21:45:44 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-11-22 21:45:44 -0500
commit13b8b78cf1082c14eb689edf64337a0af9cd0f7f (patch)
tree74a09f557ec7359f0be5ba8ea3f077833c1a0a6f
parentfae757c2d7ba933b3db3cfae6c871846b4d1870f (diff)
downloadbfs-13b8b78cf1082c14eb689edf64337a0af9cd0f7f.tar.xz
Don't pass AT_SYMLINK_NOFOLLOW to faccessat()
It's an invalid flag for that call, and FreeBSD actually complains.
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 9dcb854..575eebd 100644
--- a/eval.c
+++ b/eval.c
@@ -133,7 +133,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, ftwbuf->at_flags) == 0;
+ return faccessat(ftwbuf->at_fd, ftwbuf->at_path, expr->idata, 0) == 0;
}
/**