From: Ulrich Drepper Date: Thu, 17 Apr 1997 23:20:49 +0000 (+0000) Subject: (iruserok): Use access instead of euidaccess. X-Git-Tag: cvs/libc20x-ud-970417~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0713d8d9b2c9859451ad5c096f331a058a82931;p=thirdparty%2Fglibc.git (iruserok): Use access instead of euidaccess. --- diff --git a/inet/rcmd.c b/inet/rcmd.c index 342c1c909e9..d390a8d8091 100644 --- a/inet/rcmd.c +++ b/inet/rcmd.c @@ -338,7 +338,7 @@ again: * reading an NFS mounted file system, can't read files that * are protected read/write owner only. */ - if (__euidaccess (pbuf, R_OK) != 0) + if (__access (pbuf, R_OK) != 0) hostf = NULL; else {