From 6875b205d6506f4c3be4bf5b8834c6cd5ac97017 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 3 Nov 1995 20:01:13 +0000 Subject: [PATCH] (remove_file, remove_dir): Use euidaccess instead of euidaccess_stat.Likewise. --- src/rm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rm.c b/src/rm.c index 3a68752..8c00a59 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? ", -- 2.7.4