diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-05-30 19:51:44 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-05-30 19:51:44 +0000 |
commit | 37b42c179bb00d05cb47c739cb95283548f84fb2 (patch) | |
tree | b73d99a6bb423c9f014b7049a01b2297feaf6221 /src/libunixonacid/opendir_at.c | |
parent | 7d0199963a2ec019270ee187f8c9cb8adb25dac1 (diff) | |
download | skalibs-37b42c179bb00d05cb47c739cb95283548f84fb2.tar.xz |
Add openc_*at functions
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libunixonacid/opendir_at.c')
-rw-r--r-- | src/libunixonacid/opendir_at.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libunixonacid/opendir_at.c b/src/libunixonacid/opendir_at.c index bee971f..c1de4f1 100644 --- a/src/libunixonacid/opendir_at.c +++ b/src/libunixonacid/opendir_at.c @@ -1,5 +1,9 @@ /* ISC license. */ +/* Should not be necessary but old NetBSD/OpenBSD fail to + properly expose fdopendir() otherwise */ +#include <skalibs/nonposix.h> + #include <skalibs/direntry.h> #include <skalibs/djbunix.h> #include <skalibs/unix-transactional.h> @@ -7,7 +11,7 @@ DIR *opendir_at (int dfd, char const *name) { DIR *dir ; - int fd = open_readatb(dfd, name) ; + int fd = openc_readatb(dfd, name) ; if (fd < 0) return 0 ; dir = fdopendir(fd) ; if (!dir) fd_close(fd) ; |