From: Stephan Bosch Date: Mon, 18 Sep 2017 20:27:41 +0000 (+0200) Subject: lmtp: proxy: Renamed client_proxy_rcpt_parse_fields() to lmtp_proxy_rcpt_parse_fields(). X-Git-Tag: 2.3.0.rc1~214 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=582f781ce1c0ae8ed27f8e1bad1be8f727613d19;p=thirdparty%2Fdovecot%2Fcore.git lmtp: proxy: Renamed client_proxy_rcpt_parse_fields() to lmtp_proxy_rcpt_parse_fields(). --- diff --git a/src/lmtp/lmtp-proxy.c b/src/lmtp/lmtp-proxy.c index 6e09ad359e..a995958abe 100644 --- a/src/lmtp/lmtp-proxy.c +++ b/src/lmtp/lmtp-proxy.c @@ -305,8 +305,8 @@ lmtp_proxy_write_reply(string_t *reply, const struct smtp_reply *proxy_reply) */ static bool -client_proxy_rcpt_parse_fields(struct lmtp_proxy_rcpt_settings *set, - const char *const *args, const char **address) +lmtp_proxy_rcpt_parse_fields(struct lmtp_proxy_rcpt_settings *set, + const char *const *args, const char **address) { const char *p, *key, *value; bool proxying = FALSE, port_set = FALSE; @@ -477,7 +477,7 @@ bool client_proxy_rcpt(struct client *client, set.timeout_msecs = LMTP_PROXY_DEFAULT_TIMEOUT_MSECS; set.params = *params; - if (!client_proxy_rcpt_parse_fields(&set, fields, &username)) { + if (!lmtp_proxy_rcpt_parse_fields(&set, fields, &username)) { /* not proxying this user */ pool_unref(&pool); return FALSE;