From: Jim Meyering Date: Fri, 3 Nov 1995 20:01:13 +0000 (+0000) Subject: (remove_file, remove_dir): Use euidaccess instead of euidaccess_stat.Likewise. X-Git-Tag: FILEUTILS-3_12f~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6875b205d6506f4c3be4bf5b8834c6cd5ac97017;p=thirdparty%2Fcoreutils.git (remove_file, remove_dir): Use euidaccess instead of euidaccess_stat.Likewise. --- diff --git a/src/rm.c b/src/rm.c index 3a68752bc3..8c00a59107 100644 --- a/src/rm.c +++ b/src/rm.c @@ -37,7 +37,7 @@ char *basename (); char *stpcpy (); char *xmalloc (); char *xrealloc (); -int eaccess_stat (); +int euidaccess (); int yesno (); void strip_trailing_slashes (); @@ -221,7 +221,7 @@ remove_file (statp) struct stat *statp; { if (!ignore_missing_files && (interactive || stdin_tty) - && eaccess_stat (statp, W_OK, pathname) + && euidaccess (pathname, W_OK) #ifdef S_ISLNK && !S_ISLNK (statp->st_mode) #endif @@ -273,7 +273,7 @@ remove_dir (statp) } if (!ignore_missing_files && (interactive || stdin_tty) - && eaccess_stat (statp, W_OK, pathname)) + && euidaccess (pathname, W_OK)) { fprintf (stderr, "%s: descend directory `%s', overriding mode %04o? ",