diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-19 14:50:48 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-19 15:50:45 -0400 |
commit | 48d91c62cd27c15fe0e928abf6d023d17e9c41f7 (patch) | |
tree | a6dd2dfb7acddb2e45bdbdddf4fced3ae0155e15 /tests/xtouch.c | |
parent | 111cc3af4b6132fda47d18683a04985ca7c571c2 (diff) | |
download | bfs-48d91c62cd27c15fe0e928abf6d023d17e9c41f7.tar.xz |
config: Check for struct stat::st_{a,c,m,birth}{tim,timespec}
Diffstat (limited to 'tests/xtouch.c')
-rw-r--r-- | tests/xtouch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/xtouch.c b/tests/xtouch.c index 82d749d..cd41842 100644 --- a/tests/xtouch.c +++ b/tests/xtouch.c @@ -237,8 +237,8 @@ int main(int argc, char *argv[]) { fprintf(stderr, "%s: '%s': %s\n", cmd, rarg, xstrerror(errno)); return EXIT_FAILURE; } - times[0] = buf.st_atim; - times[1] = buf.st_mtim; + times[0] = ST_ATIM(buf); + times[1] = ST_MTIM(buf); } else if (darg) { if (xgetdate(darg, ×[0]) != 0) { fprintf(stderr, "%s: Parsing time '%s' failed: %s\n", cmd, darg, xstrerror(errno)); |