Control: tags -1 patch On Wed, Aug 20, 2025 at 06:47:55PM -0400, Jeremy Bicha wrote: > Thank you for reporting this bug. > > I filed a removal bug for those architectures: https://bugs.debian.org/1111668 > > Once that's processed, we can downgrade this bug to important.
Please add the attached fix instead. > Thank you, > Jeremy BÍcha cu Adrian BTW: The copy of the email you sent me personally was encrypted (not just signed).
Description: Fix FTBFS on 32-bit with 64-bit time_t Author: Adrian Bunk <[email protected]> Bug-Debian: https://bugs.debian.org/1111348 --- syncevolution-2.0.0.orig/src/gtk3-ui/sync-ui.c +++ syncevolution-2.0.0/src/gtk3-ui/sync-ui.c @@ -1611,7 +1611,7 @@ restore_clicked_cb (GtkButton *btn, app_ static void add_backup (app_data *data, const char *peername, const char *dir, - long endtime, GList *sources) + time_t endtime, GList *sources) { GtkWidget *timelabel, *label, *blabel, *button, *box;; guint rows; @@ -1689,7 +1689,7 @@ get_reports_for_backups_cb (SyncevoServe GHashTableIter iter; char *key, *val; /* long status = -1; */ - long endtime = -1; + time_t endtime = -1; char *peername = NULL; char *dir = NULL; GList *backup_sources = NULL;

