[exim-cvs] Add missing colon when logging outgoing I=

Top Page
Delete this message
Reply to this message
Author: Exim Git Commits Mailing List
Date:  
To: exim-cvs
Subject: [exim-cvs] Add missing colon when logging outgoing I=
Gitweb: https://git.exim.org/exim.git/commitdiff/2d5bf0979718f106016157dff7c6e7cdb01ac2b4
Commit:     2d5bf0979718f106016157dff7c6e7cdb01ac2b4
Parent:     c77d3d85fe96486e8e9b42a287c541193d87ed5d
Author:     Heiko Schlittermann (HS12-RIPE) <hs@???>
AuthorDate: Fri Mar 8 18:29:20 2019 +0100
Committer:  Heiko Schlittermann (HS12-RIPE) <hs@???>
CommitDate: Fri Mar 8 18:31:08 2019 +0100


    Add missing colon when logging outgoing I=


    Credits to Larry Rosenman <ler@???> for reporting this.
---
 src/src/deliver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


diff --git a/src/src/deliver.c b/src/src/deliver.c
index 5064700..0711879 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;
 }