about summary refs log tree commit diff
path: root/src/libunixonacid/opendir_at.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libunixonacid/opendir_at.c')
-rw-r--r--src/libunixonacid/opendir_at.c31
1 files changed, 27 insertions, 4 deletions
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 <skalibs/sysdeps.h>
 #include <skalibs/nonposix.h>
-
 #include <skalibs/direntry.h>
 #include <skalibs/djbunix.h>
 #include <skalibs/unix-transactional.h>
 
+#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 <unistd.h>
+#include <stdlib.h>
+
+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