diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-04-30 19:02:54 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-04-30 19:02:54 -0400 |
commit | 42318fb48d54fb3678c366381b76e9f1257db12e (patch) | |
tree | 1d8741115128a1f0cfd3a415deb654dba0a61cdc /eval.c | |
parent | 3f2d0b48cab355f34bbf18ebd49cf8f30d0ba8b5 (diff) | |
download | bfs-42318fb48d54fb3678c366381b76e9f1257db12e.tar.xz |
Pass AT_EACCESS to faccessat()
That's the form that actually answers the expected question ("can I
open() this"), and the only form Hurd supports.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } /** |