diff options
Diffstat (limited to 'src/stdio/tempnam.c')
-rw-r--r-- | src/stdio/tempnam.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stdio/tempnam.c b/src/stdio/tempnam.c index 9bf8c727..45a5f266 100644 --- a/src/stdio/tempnam.c +++ b/src/stdio/tempnam.c @@ -36,7 +36,12 @@ char *tempnam(const char *dir, const char *pfx) for (try=0; try<MAXTRIES; try++) { __randname(s+l-6); +#ifdef SYS_lstat r = __syscall(SYS_lstat, s, &(struct stat){0}); +#else + r = __syscall(SYS_fstatat, AT_FDCWD, s, + &(struct stat){0}, AT_SYMLINK_NOFOLLOW); +#endif if (r == -ENOENT) return strdup(s); } return 0; |