]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
submission: use correct format string for printing uoff_t
authorJosef 'Jeff' Sipek <jeff.sipek@dovecot.fi>
Tue, 12 Dec 2017 13:55:58 +0000 (08:55 -0500)
committerJosef 'Jeff' Sipek <jeff.sipek@dovecot.fi>
Tue, 12 Dec 2017 13:57:51 +0000 (08:57 -0500)
src/submission/cmd-helo.c

index 4be1de945458ad8ac7fc5bba944a3e9300d6c3ee..3c3bfc8426aef7f1eeffc37c05e5b1938957ecf8 100644 (file)
@@ -86,7 +86,7 @@ static void cmd_helo_do_reply(struct client *client,
                cap_size = client_get_max_mail_size(client);
                if (cap_size > 0) {
                        smtp_server_reply_ehlo_add_param(reply,
-                               "SIZE", "%"PRIuSIZE_T, cap_size);
+                               "SIZE", "%"PRIuUOFF_T, cap_size);
                } else {
                        smtp_server_reply_ehlo_add(reply, "SIZE");
                }