linux: Fix missing __convert_scm_timestamps (BZ #28860)

Commit 948ce73b31 made recvmsg/recvmmsg to always call
__convert_scm_timestamps for 64 bit time_t symbol, so adjust it to
always build it for __TIMESIZE != 64.

It fixes build for architecture with 32 bit time_t support when
configured with minimum kernel of 5.1.
This commit is contained in:
Adhemerval Zanella 2022-02-03 16:52:52 -03:00
parent 97ba273b50
commit 798d716df7

View file

@ -16,9 +16,9 @@
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <kernel-features.h>
#include <bits/timesize.h>
#ifndef __ASSUME_TIME64_SYSCALLS
#if __TIMESIZE != 64
# include <stdint.h>
# include <string.h>
# include <sys/socket.h>