about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdhemerval Zanella Netto <adhemerval.zanella@linaro.org>2022-10-26 16:04:25 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2022-12-28 17:25:50 -0300
commit293211b6fddf60fc407d21fcba0326dd2148f76b (patch)
tree77cce76b827689c84902b25f3595e42b59fd7353
parent26c82788890b763482ed125346be71fd3e27a7eb (diff)
downloadglibc-293211b6fddf60fc407d21fcba0326dd2148f76b.tar.gz
glibc-293211b6fddf60fc407d21fcba0326dd2148f76b.tar.xz
glibc-293211b6fddf60fc407d21fcba0326dd2148f76b.zip
time: Use 64 bit time on tzfile
The tzfile_mtime is already compared to 64 bit time_t stat call.
Reviewed-by: DJ Delorie <dj@redhat.com>

(cherry picked from commit 4e21c2075193e406a92c0d1cb091a7c804fda4d9)
-rw-r--r--time/tzfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time/tzfile.c b/time/tzfile.c
index dd75848ba9..394b098856 100644
--- a/time/tzfile.c
+++ b/time/tzfile.c
@@ -32,7 +32,7 @@
 int __use_tzfile;
 static dev_t tzfile_dev;
 static ino64_t tzfile_ino;
-static time_t tzfile_mtime;
+static __time64_t tzfile_mtime;
 
 struct ttinfo
   {