diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-05-31 11:46:59 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-06-01 13:23:13 -0300 |
commit | 3fbc33010c76721d34f676d8efb45bcc54e0d575 (patch) | |
tree | fa727c810302cae0ec447ecb3c39edad5e606225 | |
parent | e6547d635b991651600fab31f788ed5facd77610 (diff) | |
download | glibc-3fbc33010c76721d34f676d8efb45bcc54e0d575.tar glibc-3fbc33010c76721d34f676d8efb45bcc54e0d575.tar.gz glibc-3fbc33010c76721d34f676d8efb45bcc54e0d575.tar.bz2 glibc-3fbc33010c76721d34f676d8efb45bcc54e0d575.zip |
misc: Use 64 bit stat for daemon (BZ# 29203)
This is a missing spot initially from 52a5fe70a2c77935.
Checked on i686-linux-gnu.
-rw-r--r-- | misc/daemon.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/daemon.c b/misc/daemon.c index 0e688f4d74..3c73ac2ab8 100644 --- a/misc/daemon.c +++ b/misc/daemon.c @@ -61,11 +61,10 @@ daemon (int nochdir, int noclose) (void)__chdir("/"); if (!noclose) { - struct stat64 st; + struct __stat64_t64 st; if ((fd = __open_nocancel(_PATH_DEVNULL, O_RDWR, 0)) != -1 - && (__builtin_expect (__fstat64 (fd, &st), 0) - == 0)) { + && __glibc_likely (__fstat64_time64 (fd, &st) == 0)) { if (__builtin_expect (S_ISCHR (st.st_mode), 1) != 0 #if defined DEV_NULL_MAJOR && defined DEV_NULL_MINOR && (st.st_rdev |