diff options
author | June McEnroe <june@causal.agency> | 2019-01-10 19:54:05 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-10 19:54:55 -0500 |
commit | 78f6ae64ec2ee68b3b7456c9dbdeff4c76577711 (patch) | |
tree | 1845c3700e96086dcf611514efe67a30bd7083f8 /bin/cash | |
parent | Replace sys_nsig with NSIG (diff) | |
download | src-78f6ae64ec2ee68b3b7456c9dbdeff4c76577711.tar.gz src-78f6ae64ec2ee68b3b7456c9dbdeff4c76577711.zip |
Replace st_mtim with st_mtimespec
Diffstat (limited to '')
-rw-r--r-- | bin/cash/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 |