From 5f953c5162cef64c26b78edf7feb37499367c371 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 18 Nov 2024 15:13:14 +0100 Subject: [PATCH] fix omissions in making expiration target side configurable amends 8566283c. --- src/sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sync.c b/src/sync.c index 38dbf06..1937d65 100644 --- a/src/sync.c +++ b/src/sync.c @@ -1013,7 +1013,7 @@ box_loaded( int sts, message_t *msgs, int total_msgs, int recent_msgs, void *aux sflags = sanitize_flags( sflags, svars, t ); if ((t != xt) && (srec->status & (S_EXPIRE | S_EXPIRED))) { /* Don't propagate deletion resulting from expiration. */ - debug( " near side expiring\n" ); + debug( " %s side expiring\n", str_fn[xt] ); sflags &= ~F_DELETED; } if (srec->status & S_DUMMY(t^1)) { @@ -1204,7 +1204,7 @@ box_loaded( int sts, message_t *msgs, int total_msgs, int recent_msgs, void *aux if (!srec->uid[xt^1]) continue; if (!(srec->status & S_PENDING)) { - // We ignore unpaired far-side messages, as there is obviously nothing + // We ignore unpaired keep-side messages, as there is obviously nothing // to expire in the first place. if (!srec->msg[xt]) continue;