From 8ee2aea6d46215dcfda5cc73a5762800099e9fb1 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 16 Apr 2024 13:57:35 +0000 Subject: More support for old MacOS fossils Signed-off-by: Laurent Bercot --- src/libunixonacid/opendir_at.c | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) (limited to 'src/libunixonacid') diff --git a/src/libunixonacid/opendir_at.c b/src/libunixonacid/opendir_at.c index c1de4f1..d5a3221 100644 --- a/src/libunixonacid/opendir_at.c +++ b/src/libunixonacid/opendir_at.c @@ -1,19 +1,42 @@ /* ISC license. */ -/* Should not be necessary but old NetBSD/OpenBSD fail to - properly expose fdopendir() otherwise */ +#include #include - #include #include #include +#ifdef SKALIBS_HASFDOPENDIR + DIR *opendir_at (int dfd, char const *name) { DIR *dir ; int fd = openc_readatb(dfd, name) ; - if (fd < 0) return 0 ; + if (fd == -1) return 0 ; dir = fdopendir(fd) ; if (!dir) fd_close(fd) ; return dir ; } + +#else + +#include +#include + +DIR *opendir_at (int dfd, char const *name) +{ + DIR *dir ; + int here = open_read(".") ; + if (here == -1) return 0 ; + if (fchdir(dfd) == -1) + { + fd_close(here) ; + return 0 ; + } + dir = opendir(name) ; + if (fchdir(here) == -1) abort() ; + fd_close(here) ; + return dir ; +} + +#endif -- cgit v1.2.3