From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id B0B513857831; Wed, 23 Jun 2021 17:17:44 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B0B513857831 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] hurd: Fix build after 52a5fe70a2 X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/master X-Git-Oldrev: bf6749a7f87c54e62db26b24c63b27004a110847 X-Git-Newrev: 30adcf5adb40293654f77ebd443468a6f6fffc2a Message-Id: <20210623171744.B0B513857831@sourceware.org> Date: Wed, 23 Jun 2021 17:17:44 +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: Wed, 23 Jun 2021 17:17:44 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=30adcf5adb40293654f77ebd443468a6f6fffc2a commit 30adcf5adb40293654f77ebd443468a6f6fffc2a Author: Adhemerval Zanella Date: Wed Jun 23 14:14:48 2021 -0300 hurd: Fix build after 52a5fe70a2 Hurd does not support 64-bit time_t internally. Diff: --- io/file_change_detection.c | 6 ++++-- sysdeps/posix/getaddrinfo.c | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/io/file_change_detection.c b/io/file_change_detection.c index fad0907223..aad8edb059 100644 --- a/io/file_change_detection.c +++ b/io/file_change_detection.c @@ -56,8 +56,10 @@ __file_change_detection_for_stat (struct file_change_detection *file, { file->size = st->st_size; file->ino = st->st_ino; - file->mtime = st->st_mtim; - file->ctime = st->st_ctim; + file->mtime = (struct __timespec64) { st->st_mtim.tv_sec, + st->st_mtim.tv_nsec }; + file->ctime = (struct __timespec64) { st->st_ctim.tv_sec, + st->st_ctim.tv_nsec }; } } libc_hidden_def (__file_change_detection_for_stat) diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index f7f19f1d7c..838a68f022 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -1641,7 +1641,8 @@ static struct __timespec64 gaiconf_mtime; static inline void save_gaiconf_mtime (const struct __stat64_t64 *st) { - gaiconf_mtime = st->st_mtim; + gaiconf_mtime = (struct __timespec64) { st->st_mtim.tv_sec, + st->st_mtim.tv_nsec }; } static inline bool