diff options
Diffstat (limited to 'tst-socket-timestamp-compat.c-Check-__TIMESIZE-BZ-28.patch')
-rw-r--r-- | tst-socket-timestamp-compat.c-Check-__TIMESIZE-BZ-28.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tst-socket-timestamp-compat.c-Check-__TIMESIZE-BZ-28.patch b/tst-socket-timestamp-compat.c-Check-__TIMESIZE-BZ-28.patch new file mode 100644 index 0000000..eeab0ad --- /dev/null +++ b/tst-socket-timestamp-compat.c-Check-__TIMESIZE-BZ-28.patch @@ -0,0 +1,29 @@ +From 008003dc6e83439c5e04a744b7fd8197df19096e Mon Sep 17 00:00:00 2001 +From: "H.J. Lu" <hjl.tools@gmail.com> +Date: Sat, 29 Jan 2022 05:22:31 -0800 +Subject: [PATCH] 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. + +(cherry pick from commit 77a602ebb0769e7ccc5f9f8e06f7fffe66f69dfc) +--- + 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); +-- +2.27.0 + |