]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: lmtp-proxy - Remove unused finish timout.
authorStephan Bosch <stephan.bosch@dovecot.fi>
Mon, 16 Jul 2018 18:12:35 +0000 (20:12 +0200)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Mon, 17 Jan 2022 11:52:08 +0000 (13:52 +0200)
src/lmtp/lmtp-proxy.c

index 3be042596dfe7a68034c65bfe81d948feee80ba9..be3df7de475b703eb9daab671a893a74ba8eaf30 100644 (file)
@@ -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);