libredirect: fix build on darwin (#78399)

libredirect: fix build on darwin
This commit is contained in:
Jörg Thalheim
2020-01-24 11:43:55 +00:00
committed by GitHub

View File

@@ -61,7 +61,11 @@ static const char * rewrite(const char * path, char * buf)
static int open_needs_mode(int flags)
{
#ifdef O_TMPFILE
return (flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE;
#else
return flags & O_CREAT;
#endif
}
/* The following set of Glibc library functions is very incomplete -