From 2d5bf0979718f106016157dff7c6e7cdb01ac2b4 Mon Sep 17 00:00:00 2001 From: "Heiko Schlittermann (HS12-RIPE)" Date: Fri, 8 Mar 2019 18:29:20 +0100 Subject: [PATCH] Add missing colon when logging outgoing I= Credits to Larry Rosenman 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 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; } -- 2.30.2