]> git.eshelyaron.com Git - emacs.git/commitdiff
(check_executable): Use euidaccess, not eaccess.
authorRichard M. Stallman <rms@gnu.org>
Fri, 28 Jun 1996 07:05:19 +0000 (07:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 28 Jun 1996 07:05:19 +0000 (07:05 +0000)
src/fileio.c

index f5a800f6c16697d8521aac9b9b6e4b7feb952df4..7df85fc78a16f94e179703abb20b0cd8de5b35f3 100644 (file)
@@ -2544,8 +2544,8 @@ check_executable (filename)
          || (st.st_mode & S_IFMT) == S_IFDIR);
 #endif /* not WINDOWSNT */
 #else /* not DOS_NT */
-#ifdef HAVE_EACCESS
-  return (eaccess (filename, 1) >= 0);
+#ifdef HAVE_EUIDACCESS
+  return (euidaccess (filename, 1) >= 0);
 #else
   /* Access isn't quite right because it uses the real uid
      and we really want to test with the effective uid.