]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-storage: Sync "Time moved forward by" warning message with master process
authorTimo Sirainen <timo.sirainen@open-xchange.com>
Thu, 23 Oct 2025 20:40:12 +0000 (23:40 +0300)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Fri, 24 Oct 2025 07:22:50 +0000 (07:22 +0000)
master had "by", while lib-storage didn't.

src/lib-storage/mail-storage-service.c

index 8cb6c86e6a3af24417d85e7232596a90bc573a0d..393aeb51afa607802764b2a7ff4454c3779cfb63 100644 (file)
@@ -826,7 +826,7 @@ mail_storage_service_time_moved(const struct timeval *old_time,
 
        if (diff > 0) {
                if ((diff / 1000) > MAX_NOWARN_FORWARD_MSECS)
-                       i_warning("Time moved forward %lld.%06lld seconds",
+                       i_warning("Time moved forward by %lld.%06lld seconds",
                                  diff / 1000000, diff % 1000000);
                return;
        }