diff options
| author | Michael I. Bushnell <mib@gnu.org> | 1996-03-20 21:02:17 +0000 |
|---|---|---|
| committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-20 21:02:17 +0000 |
| commit | a14a84d7bfba8c138367a433cc6f562895ce5b54 (patch) | |
| tree | 3e13d79cda90f98e550880cd2efbf25ddc7ef357 /ufs | |
| parent | e802372ce7210fe006b9207f810bc274d3dd9ff3 (diff) | |
(diskfs_lookup_hard): Don't do initial permission checking here.
Diffstat (limited to 'ufs')
| -rw-r--r-- | ufs/dir.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -120,12 +120,6 @@ diskfs_lookup_hard (struct node *dp, char *name, enum lookup_type type, if (namelen > MAXNAMLEN) return ENAMETOOLONG; - if (!S_ISDIR (dp->dn_stat.st_mode)) - return ENOTDIR; - err = diskfs_access (dp, S_IEXEC, cred); - if (err) - return err; - try_again: if (ds) { |
