From: Heiko Schlittermann (HS12-RIPE) Date: Fri, 8 Mar 2019 17:29:20 +0000 (+0100) Subject: Add missing colon when logging outgoing I= X-Git-Tag: exim-4.93-RC0~264 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/2d5bf0979718f106016157dff7c6e7cdb01ac2b4 Add missing colon when logging outgoing I= Credits to Larry Rosenman for reporting this. --- diff --git a/src/src/deliver.c b/src/src/deliver.c index 506470070..071187942 100644 --- a/src/src/deliver.c +++ b/src/src/deliver.c @@ -758,7 +758,7 @@ if (LOGGING(incoming_interface) && LOGGING(outgoing_interface) { g = string_fmt_append(g, " I=[%s]", sending_ip_address); if (LOGGING(outgoing_port)) - g = string_fmt_append(g, "%d", sending_port); + g = string_fmt_append(g, ":%d", sending_port); } return g; }