mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
posix: Use 64 bit stat for fpathconf (_PC_ASYNC_IO) (BZ# 29208)
This is a missing spot initially from 52a5fe70a2
.
Checked on i686-linux-gnu.
This commit is contained in:
parent
574ba60fc8
commit
6e7137f28c
@ -131,9 +131,9 @@ __fpathconf (int fd, int name)
|
||||
#ifdef _POSIX_ASYNC_IO
|
||||
{
|
||||
/* AIO is only allowed on regular files and block devices. */
|
||||
struct stat64 st;
|
||||
struct __stat64_t64 st;
|
||||
|
||||
if (__fstat64 (fd, &st) < 0
|
||||
if (__fstat64_time64 (fd, &st) < 0
|
||||
|| (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
|
||||
return -1;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user