From cf9d2e8c389b84dba23c83b5cfc72082df65dfba Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 10 Jan 2019 20:01:33 -0500 Subject: Replace eaccess with faccessat --- bin/cash/test.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'bin/cash/test.c') diff --git a/bin/cash/test.c b/bin/cash/test.c index e74c4f4c..a153cdb3 100644 --- a/bin/cash/test.c +++ b/bin/cash/test.c @@ -23,6 +23,7 @@ __FBSDID("$FreeBSD: releng/12.0/bin/test/test.c 298232 2016-04-19 00:38:07Z arau #include #include #include +#include #include #include #include @@ -375,18 +376,18 @@ filstat(char *nm, enum token mode) switch (mode) { case FILRD: - return (eaccess(nm, R_OK) == 0); + return (faccessat(AT_FDCWD, nm, R_OK, AT_EACCESS) == 0); case FILWR: - return (eaccess(nm, W_OK) == 0); + return (faccessat(AT_FDCWD, nm, W_OK, AT_EACCESS) == 0); case FILEX: /* XXX work around eaccess(2) false positives for superuser */ - if (eaccess(nm, X_OK) != 0) + if (faccessat(AT_FDCWD, nm, X_OK, AT_EACCESS) != 0) return 0; if (S_ISDIR(s.st_mode) || geteuid() != 0) return 1; return (s.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0; case FILEXIST: - return (eaccess(nm, F_OK) == 0); + return (faccessat(AT_FDCWD, nm, F_OK, AT_EACCESS) == 0); case FILREG: return S_ISREG(s.st_mode); case FILDIR: -- cgit 1.4.1