public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] tst-socket-timestamp-compat.c: Check __TIMESIZE [BZ #28837]
@ 2022-01-29 14:57 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 2022-01-29 14:57 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=77a602ebb0769e7ccc5f9f8e06f7fffe66f69dfc

commit 77a602ebb0769e7ccc5f9f8e06f7fffe66f69dfc
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sat Jan 29 05:22:31 2022 -0800

    tst-socket-timestamp-compat.c: Check __TIMESIZE [BZ #28837]
    
    time_t size is defined by __TIMESIZE, not __WORDSIZE.  Check __TIMESIZE,
    instead of __WORDSIZE, for time_t size.  This fixes BZ #28837.

Diff:
---
 sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c b/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c
index de261dae5a..0ff1a214e6 100644
--- a/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c
+++ b/sysdeps/unix/sysv/linux/tst-socket-timestamp-compat.c
@@ -237,7 +237,7 @@ do_test (void)
 {
   /* This test only make sense for ABIs that support 32 bit time_t socket
      timestampss.  */
-  if (sizeof (time_t) > 4 && __WORDSIZE == 64)
+  if (sizeof (time_t) > 4 && __TIMESIZE == 64)
     return 0;
 
   srv = xsocket (AF_INET, SOCK_DGRAM, 0);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-29 14:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-29 14:57 [glibc] tst-socket-timestamp-compat.c: Check __TIMESIZE [BZ #28837] H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).