From 78f6ae64ec2ee68b3b7456c9dbdeff4c76577711 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 10 Jan 2019 19:54:05 -0500 Subject: Replace st_mtim with st_mtimespec --- bin/cash/test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/cash/test.c') diff --git a/bin/cash/test.c b/bin/cash/test.c index e51391c2..e74c4f4c 100644 --- a/bin/cash/test.c +++ b/bin/cash/test.c @@ -603,12 +603,12 @@ newerf (const char *f1, const char *f2) if (stat(f1, &b1) != 0 || stat(f2, &b2) != 0) return 0; - if (b1.st_mtim.tv_sec > b2.st_mtim.tv_sec) + if (b1.st_mtimespec.tv_sec > b2.st_mtimespec.tv_sec) return 1; - if (b1.st_mtim.tv_sec < b2.st_mtim.tv_sec) + if (b1.st_mtimespec.tv_sec < b2.st_mtimespec.tv_sec) return 0; - return (b1.st_mtim.tv_nsec > b2.st_mtim.tv_nsec); + return (b1.st_mtimespec.tv_nsec > b2.st_mtimespec.tv_nsec); } static int -- cgit 1.4.1