diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-09-02 14:53:59 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-09-02 14:53:59 +0200 |
commit | 8b5b59c704e9edbb0784697ada1df9112fc3e18b (patch) | |
tree | 48696d14cdb3e326d4964748de80a6de47331936 /libdiskfs | |
parent | e132a443e5373cc9e404c37b89e2ccc4cb845e8e (diff) | |
download | hurd-8b5b59c704e9edbb0784697ada1df9112fc3e18b.tar.gz hurd-8b5b59c704e9edbb0784697ada1df9112fc3e18b.tar.bz2 hurd-8b5b59c704e9edbb0784697ada1df9112fc3e18b.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 'libdiskfs')
-rw-r--r-- | libdiskfs/dir-lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/dir-lookup.c b/libdiskfs/dir-lookup.c index 8df81cfa..30e2a2e3 100644 --- a/libdiskfs/dir-lookup.c +++ b/libdiskfs/dir-lookup.c @@ -51,7 +51,7 @@ diskfs_S_dir_lookup (struct protid *dircred, int lastcomp = 0; int newnode = 0; struct dirstat *ds = 0; - int mustbedir = 0; + int mustbedir = (flags & O_DIRECTORY) != 0; mach_msg_type_name_t amt; int type; struct protid *newpi = 0; |