mail/exim: add missing colon on I=

Reported by:	ler (self)
Approved by:	vsevolod (maintainer, private mail)
This commit is contained in:
Larry Rosenman 2019-03-11 16:26:23 +00:00
parent 862873e89b
commit 0ec0fdfd5d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=495360
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= exim
PORTVERSION?= ${EXIM_VERSION}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= mail ipv6
MASTER_SITES= EXIM:exim
MASTER_SITE_SUBDIR= /exim4/:exim \

View File

@ -0,0 +1,11 @@
--- src/deliver.c.orig 2019-03-11 16:20:17 UTC
+++ src/deliver.c
@@ -763,7 +763,7 @@ if (LOGGING(incoming_interface) && LOGGING(outgoing_in
{
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;
}