Back out 1.14 until I reproduce trouble reports

This commit is contained in:
Warner Losh 1997-03-25 05:34:31 +00:00
parent 4a028a883d
commit 99a0772b8d

View file

@ -305,10 +305,8 @@ register struct state * const sp;
doaccess = TRUE;
name = fullname;
}
/* XXX Should really be issetguid(), but we don't have that */
if (doaccess &&
(getuid() != geteuid() || getgid() != getegid()) )
return -1;
if (doaccess && access(name, R_OK) != 0)
return -1;
if ((fid = open(name, OPEN_MODE)) == -1)
return -1;
if ((fstat(fid, &stab) < 0) || !S_ISREG(stab.st_mode))