29 lines
947 B
Diff
29 lines
947 B
Diff
From 5a032f32ea77d81c012841dde88b070f55037f25 Mon Sep 17 00:00:00 2001
|
|
From: Egor Bychin <e.bychin@drweb.com>
|
|
Date: Mon, 11 Oct 2021 13:56:43 +0300
|
|
Subject: [PATCH] glocalfileinfo: Fix atime/mtime mix due to bad copy/paste
|
|
|
|
Conflict:NA
|
|
Reference:https://gitlab.gnome.org/GNOME/glib/-/commit/5a032f32ea77d81c012841dde88b070f55037f25
|
|
|
|
---
|
|
gio/glocalfileinfo.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c
|
|
index 3867ca684a..d3b327a19c 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)
|
|
--
|
|
GitLab
|
|
|