From 5a032f32ea77d81c012841dde88b070f55037f25 Mon Sep 17 00:00:00 2001 From: Egor Bychin Date: Mon, 11 Oct 2021 13:56:43 +0300 Subject: [PATCH] glocalfileinfo: Fix atime/mtime mix due to bad copy/paste --- gio/glocalfileinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c index 3867ca684..d3b327a19 100644 --- a/gio/glocalfileinfo.c +++ b/gio/glocalfileinfo.c @@ -2650,7 +2650,7 @@ set_mtime_atime (char *filename, { if (lazy_stat (filename, &statbuf, &got_stat) == 0) { - times[0].tv_sec = statbuf.st_mtime; + times[0].tv_sec = statbuf.st_atime; #if defined (HAVE_STRUCT_STAT_ST_ATIMENSEC) times[0].tv_usec = statbuf.st_atimensec / 1000; #elif defined (HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)