93dc2d
commit 008003dc6e83439c5e04a744b7fd8197df19096e
93dc2d
Author: H.J. Lu <hjl.tools@gmail.com>
93dc2d
Date:   Sat Jan 29 05:22:31 2022 -0800
93dc2d
93dc2d
    tst-socket-timestamp-compat.c: Check __TIMESIZE [BZ #28837]
93dc2d
    
93dc2d
    time_t size is defined by __TIMESIZE, not __WORDSIZE.  Check __TIMESIZE,
93dc2d
    instead of __WORDSIZE, for time_t size.  This fixes BZ #28837.
93dc2d
    
93dc2d
    (cherry pick from commit 77a602ebb0769e7ccc5f9f8e06f7fffe66f69dfc)
93dc2d
93dc2d
diff --git a/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c b/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c
93dc2d
index de261dae5a6385cf..0ff1a214e605105b 100644
93dc2d
--- a/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c
93dc2d
+++ b/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c
93dc2d
@@ -237,7 +237,7 @@ do_test (void)
93dc2d
 {
93dc2d
   /* This test only make sense for ABIs that support 32 bit time_t socket
93dc2d
      timestampss.  */
93dc2d
-  if (sizeof (time_t) > 4 && __WORDSIZE == 64)
93dc2d
+  if (sizeof (time_t) > 4 && __TIMESIZE == 64)
93dc2d
     return 0;
93dc2d
 
93dc2d
   srv = xsocket (AF_INET, SOCK_DGRAM, 0);