summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2019-03-08 18:29:20 +0100
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2019-03-08 18:31:08 +0100
commit2d5bf0979718f106016157dff7c6e7cdb01ac2b4 (patch)
tree55ea68d65e81437f97c5efae36dbce28e36d31a7
parentc77d3d85fe96486e8e9b42a287c541193d87ed5d (diff)
downloadexim4-2d5bf0979718f106016157dff7c6e7cdb01ac2b4.tar.gz
Add missing colon when logging outgoing I=
Credits to Larry Rosenman <ler@lerctr.org> for reporting this.
-rw-r--r--src/src/deliver.c2
1 files changed, 1 insertions, 1 deletions
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;
}