diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-04-07 22:25:27 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-04-07 22:25:27 +0100 |
commit | 1bdabe1ae917ecf7a8f2e917387f69506d59848e (patch) | |
tree | 75bf71db94ba9701b15213fe8bf27e30ce202f81 | |
parent | 4bb241788d6183df9df6b11a6e6071734b65fce1 (diff) |
compiler quietening
-rw-r--r-- | src/src/transports/smtp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c index 70ab483a6..59abb9ef8 100644 --- a/src/src/transports/smtp.c +++ b/src/src/transports/smtp.c @@ -3559,14 +3559,12 @@ struct pollfd p[2] = {{.fd = tls_out.active.sock, .events = POLLIN}, {.fd = pfd[0], .events = POLLIN}}; int rc, i; BOOL send_tls_shutdown = TRUE; -uschar * s = - string_sprintf("proxying TLS connection for continued transport to %s\n", host); close(pfd[1]); if ((rc = exim_fork(US"tls-proxy"))) _exit(rc < 0 ? EXIT_FAILURE : EXIT_SUCCESS); -set_process_info(CCS s); +set_process_info("proxying TLS connection for continued transport to %s\n", host); do { |