X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Feuidaccess.c;h=5ba59b0ef6fcd23c5695e5f24e7e73b5a9f1d5f0;hb=afefb5e3d56c082d8386fc59011b890e9270fab4;hp=9db7bb4f285357ec7329c9291daecc8e0225c1c3;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/euidaccess.c b/lib/euidaccess.c index 9db7bb4f2..5ba59b0ef 100644 --- a/lib/euidaccess.c +++ b/lib/euidaccess.c @@ -1,7 +1,7 @@ /* euidaccess -- check if effective user id can access file - Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006 - Free Software Foundation, Inc. + Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, + 2008, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -23,7 +23,6 @@ #ifndef _LIBC # include -# include "euidaccess.h" #endif #include @@ -78,7 +77,9 @@ int euidaccess (const char *file, int mode) { -#if defined EFF_ONLY_OK +#if HAVE_FACCESSAT + return faccessat (AT_FDCWD, file, mode, AT_EACCESS); +#elif defined EFF_ONLY_OK return access (file, mode | EFF_ONLY_OK); #elif defined ACC_SELF return accessx (file, mode, ACC_SELF);