diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-11-22 21:45:44 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-11-22 21:45:44 -0500 |
commit | 13b8b78cf1082c14eb689edf64337a0af9cd0f7f (patch) | |
tree | 74a09f557ec7359f0be5ba8ea3f077833c1a0a6f /eval.c | |
parent | fae757c2d7ba933b3db3cfae6c871846b4d1870f (diff) | |
download | bfs-13b8b78cf1082c14eb689edf64337a0af9cd0f7f.tar.xz |
Don't pass AT_SYMLINK_NOFOLLOW to faccessat()
It's an invalid flag for that call, and FreeBSD actually complains.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } /** |