From: Stephan Bosch Date: Mon, 16 Jul 2018 18:12:35 +0000 (+0200) Subject: lmtp: lmtp-proxy - Remove unused finish timout. X-Git-Tag: 2.4.0~4822 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac1464b0066befa3b9db0d45ead57786ea216a3f;p=thirdparty%2Fdovecot%2Fcore.git lmtp: lmtp-proxy - Remove unused finish timout. --- diff --git a/src/lmtp/lmtp-proxy.c b/src/lmtp/lmtp-proxy.c index 3be042596d..be3df7de47 100644 --- a/src/lmtp/lmtp-proxy.c +++ b/src/lmtp/lmtp-proxy.c @@ -83,7 +83,6 @@ struct lmtp_proxy { ARRAY(struct lmtp_proxy_recipient *) rcpt_to; unsigned int next_data_reply_idx; - struct timeout *to_finish; struct istream *data_input; unsigned int max_timeout_msecs; @@ -162,7 +161,6 @@ void lmtp_proxy_deinit(struct lmtp_proxy **_proxy) smtp_client_deinit(&proxy->lmtp_client); i_stream_unref(&proxy->data_input); - timeout_remove(&proxy->to_finish); array_free(&proxy->rcpt_to); array_free(&proxy->connections); i_free(proxy);