diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2018-09-26 10:59:05 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-09-26 10:59:05 +0100 |
commit | eb58ddf5828a161dec94f131ff2c5c926c868354 (patch) | |
tree | df2d2f100a85526a2ed6e76b66e855c28690ecaf /src | |
parent | 5d520e57a9347e0274fdba9e70b7054d38457f96 (diff) |
Logging: do not log a missing proxy address, on delivery non-proxied.
Broken-by: e6d2a9894d
Diffstat (limited to 'src')
-rw-r--r-- | src/src/globals.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/src/globals.c b/src/src/globals.c index 340c45187..c18f6c163 100644 --- a/src/src/globals.c +++ b/src/src/globals.c @@ -1184,10 +1184,10 @@ int process_info_len = 0; uschar *process_log_path = NULL; #if defined(SUPPORT_PROXY) || defined(SUPPORT_SOCKS) -uschar *hosts_proxy = US""; -uschar *proxy_external_address = US""; +uschar *hosts_proxy = NULL; +uschar *proxy_external_address = NULL; int proxy_external_port = 0; -uschar *proxy_local_address = US""; +uschar *proxy_local_address = NULL; int proxy_local_port = 0; #endif |