diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-09-02 16:47:13 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-09-02 16:47:41 +0200 |
commit | ba9feb14c5f5780758b6d62ebb44cd90b99eccc4 (patch) | |
tree | 287e5c475f4b60a8b445737cc6f6d59ae06cfc9b /libnetfs | |
parent | 004164ff9965a9cb3452ca0cb34ae04ed6e1b6f6 (diff) | |
download | hurd-ba9feb14c5f5780758b6d62ebb44cd90b99eccc4.tar.gz hurd-ba9feb14c5f5780758b6d62ebb44cd90b99eccc4.tar.bz2 hurd-ba9feb14c5f5780758b6d62ebb44cd90b99eccc4.zip |
S_dir_lookup: Handle O_DIRECTORY
When e.g. looking up a socket with O_DIRECTORY, we should return ENOTDIR
rather than EACCESS.
Diffstat (limited to 'libnetfs')
-rw-r--r-- | libnetfs/dir-lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnetfs/dir-lookup.c b/libnetfs/dir-lookup.c index d77feac8..23cc1fe1 100644 --- a/libnetfs/dir-lookup.c +++ b/libnetfs/dir-lookup.c @@ -410,7 +410,7 @@ netfs_S_dir_lookup (struct protid *dircred, /* At this point, NP is the node to return. */ gotit: - if (mustbedir) + if (mustbedir || (flags & O_DIRECTORY)) { err = netfs_validate_stat (np, dircred->user); if (err) |