From 42318fb48d54fb3678c366381b76e9f1257db12e Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 30 Apr 2017 19:02:54 -0400 Subject: 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. --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 34fad7e..90b854e 100644 --- a/eval.c +++ b/eval.c @@ -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; } /** -- cgit v1.2.3