hurd: Fix fdopendir checking for directory type

* sysdeps/mach/hurd/fdopendir.c (__fdopendir): Lookup "./" instead of
"/" that would designate the root of the filesystem.
This commit is contained in:
Samuel Thibault 2020-05-28 10:13:14 +00:00
parent fff30716a7
commit 94884ff506

View File

@ -39,7 +39,7 @@ __fdopendir (int fd)
/* Ensure that it's a directory. */
error_t err = HURD_FD_PORT_USE
(d, ({
file_t dir = __file_name_lookup_under (port, "/",
file_t dir = __file_name_lookup_under (port, "./",
O_DIRECTORY | O_NOTRANS, 0);;
if (dir != MACH_PORT_NULL)
__mach_port_deallocate (__mach_task_self (), dir);