diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-29 10:20:46 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-01-17 10:57:09 -0300 |
commit | 9fe6f6363886aae6b2b210cae3ed1f5921299083 (patch) | |
tree | d601541a207382c53aa7dfd6ccc256805ec34294 /elf/readlib.c | |
parent | cedd498dbc090e39a9b3224f4c53ea98da049f40 (diff) | |
download | glibc-9fe6f6363886aae6b2b210cae3ed1f5921299083.tar.gz glibc-9fe6f6363886aae6b2b210cae3ed1f5921299083.tar.xz glibc-9fe6f6363886aae6b2b210cae3ed1f5921299083.zip |
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 <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'elf/readlib.c')
-rw-r--r-- | elf/readlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/readlib.c b/elf/readlib.c index 05c157762a..3651dcdd8e 100644 --- a/elf/readlib.c +++ b/elf/readlib.c @@ -74,10 +74,10 @@ int process_file (const char *real_file_name, const char *file_name, const char *lib, int *flag, unsigned int *osversion, unsigned int *isa_level, char **soname, int is_link, - struct stat64 *stat_buf) + struct stat *stat_buf) { FILE *file; - struct stat64 statbuf; + struct stat statbuf; void *file_contents; int ret; ElfW(Ehdr) *elf_header; @@ -97,7 +97,7 @@ process_file (const char *real_file_name, const char *file_name, return 1; } - if (fstat64 (fileno (file), &statbuf) < 0) + if (fstat (fileno (file), &statbuf) < 0) { error (0, 0, _("Cannot fstat file %s.\n"), file_name); fclose (file); |