diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-04-19 14:38:17 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-05-02 13:20:27 +0200 |
commit | 836d43b98973e0845b739ff5d3aad3af09dc7d0f (patch) | |
tree | 9a22a49a4b3f221f2a9aa0c99f957dafd5059aba /sysdeps/mips | |
parent | 9831f98c266a8d56d1bf729b709c08e40375540c (diff) | |
download | glibc-836d43b98973e0845b739ff5d3aad3af09dc7d0f.tar.gz glibc-836d43b98973e0845b739ff5d3aad3af09dc7d0f.tar.xz glibc-836d43b98973e0845b739ff5d3aad3af09dc7d0f.zip |
login: structs utmp, utmpx, lastlog _TIME_BITS independence (bug 30701)
These structs describe file formats under /var/log, and should not depend on the definition of _TIME_BITS. This is achieved by defining __WORDSIZE_TIME64_COMPAT32 to 1 on 32-bit ports that support 32-bit time_t values (where __time_t is 32 bits). Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org> (cherry picked from commit 9abdae94c7454c45e02e97e4ed1eb1b1915d13d8)
Diffstat (limited to 'sysdeps/mips')
-rw-r--r-- | sysdeps/mips/bits/wordsize.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/mips/bits/wordsize.h b/sysdeps/mips/bits/wordsize.h index 57f0f2a22f..30dd3fd85d 100644 --- a/sysdeps/mips/bits/wordsize.h +++ b/sysdeps/mips/bits/wordsize.h @@ -19,11 +19,7 @@ #define __WORDSIZE _MIPS_SZPTR -#if _MIPS_SIM == _ABI64 -# define __WORDSIZE_TIME64_COMPAT32 1 -#else -# define __WORDSIZE_TIME64_COMPAT32 0 -#endif +#define __WORDSIZE_TIME64_COMPAT32 1 #if __WORDSIZE == 32 #define __WORDSIZE32_SIZE_ULONG 0 |