From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id C2DA8385AC20; Tue, 1 Feb 2022 18:54:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C2DA8385AC20 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/release/2.34/master] tst-socket-timestamp-compat.c: Check __TIMESIZE [BZ #28837] X-Act-Checkin: glibc X-Git-Author: H.J. Lu X-Git-Refname: refs/heads/release/2.34/master X-Git-Oldrev: 489d0b8b32548bc569cd3067aebf98b030720753 X-Git-Newrev: 008003dc6e83439c5e04a744b7fd8197df19096e Message-Id: <20220201185405.C2DA8385AC20@sourceware.org> Date: Tue, 1 Feb 2022 18:54:05 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Feb 2022 18:54:05 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=008003dc6e83439c5e04a744b7fd8197df19096e commit 008003dc6e83439c5e04a744b7fd8197df19096e Author: H.J. Lu 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. (cherry pick from commit 77a602ebb0769e7ccc5f9f8e06f7fffe66f69dfc) 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);