From 9fe6f6363886aae6b2b210cae3ed1f5921299083 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Wed, 29 Dec 2021 10:20:46 -0300 Subject: elf: Fix 64 time_t support for installed statically binaries The usage of internal static symbol for statically linked binaries does not work correctly for objects built with -D_TIME_BITS=64, since the internal definition does not provide the expected aliases. This patch makes it to use the default stat functions instead (which uses the default 64 time_t alias and types). Checked on i686-linux-gnu. Reviewed-by: Carlos O'Donell Tested-by: Carlos O'Donell --- elf/sln.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'elf/sln.c') diff --git a/elf/sln.c b/elf/sln.c index 00f8f7c8e8..5347338e91 100644 --- a/elf/sln.c +++ b/elf/sln.c @@ -153,11 +153,11 @@ makesymlinks (const char *file) static int makesymlink (const char *src, const char *dest) { - struct stat64 stats; + struct stat stats; const char *error; /* Destination must not be a directory. */ - if (lstat64 (dest, &stats) == 0) + if (lstat (dest, &stats) == 0) { if (S_ISDIR (stats.st_mode)) { -- cgit 1.4.1