summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-04-30 19:02:54 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-04-30 19:02:54 -0400
commit42318fb48d54fb3678c366381b76e9f1257db12e (patch)
tree1d8741115128a1f0cfd3a415deb654dba0a61cdc
parent3f2d0b48cab355f34bbf18ebd49cf8f30d0ba8b5 (diff)
downloadbfs-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.
-rw-r--r--color.c2
-rw-r--r--eval.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/color.c b/color.c
index c591393..bdf0d7d 100644
--- a/color.c
+++ b/color.c
@@ -346,7 +346,7 @@ static const char *file_color(const struct colors *colors, const char *filename,
break;
case S_IFLNK:
- if (faccessat(ftwbuf->at_fd, ftwbuf->at_path, F_OK, 0) == 0) {
+ if (faccessat(ftwbuf->at_fd, ftwbuf->at_path, F_OK, AT_EACCESS) == 0) {
color = colors->link;
} else {
color = colors->orphan;
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;
}
/**