commit 0be593f936eb973ab957e2a439382a58bebd864d
parent 8d7590f796b85680ad489996086c9789b66b60f6
Author: Ricardo Mones <ricardo@mones.org>
Date: Sat, 1 Mar 2025 21:38:23 +0100
Fix CID 1508491: Use of 32-bit time_t
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/imap.c b/src/imap.c
@@ -171,8 +171,8 @@ struct _IMAPFolderItem
GHashTable *flags_set_table;
GHashTable *flags_unset_table;
- guint32 last_change;
- guint32 last_sync;
+ time_t last_change;
+ time_t last_sync;
gboolean should_update;
gboolean should_trash_cache;
gint can_create_flags;