diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-12-28 18:31:24 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-12-28 18:31:24 +0000 |
commit | 9604a84387b55efdc633dd7fb20db14a65c1e343 (patch) | |
tree | b139b775a9b4ee1f5cbf8263f9421d393319a509 /src | |
parent | 3b960f51c877fe70f66515e3df1e7c4e6883720f (diff) |
Logging: make placement of continued-delivery asterisk consistent
Diffstat (limited to 'src')
-rw-r--r-- | src/src/deliver.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/src/deliver.c b/src/src/deliver.c index cba8651e9..238e33acc 100644 --- a/src/src/deliver.c +++ b/src/src/deliver.c @@ -792,6 +792,9 @@ g = string_append(g, 3, US" [", h->address, US"]"); if (LOGGING(outgoing_port)) g = string_fmt_append(g, ":%d", h->port); +if (continue_sequence > 1) /*XXX this is wrong for a dropped proxyconn. Would have to pass back from transport */ + g = string_catn(g, US"*", 1); + #ifdef SUPPORT_SOCKS if (LOGGING(proxy) && proxy_local_address) { @@ -1195,8 +1198,6 @@ else if (addr->host_used) { g = d_hostlog(g, addr); - if (continue_sequence > 1) /*XXX this is wrong for a dropped proxyconn. Would have to pass back from transport */ - g = string_catn(g, US"*", 1); #ifndef DISABLE_EVENT deliver_host_address = addr->host_used->address; |