Skip to content

Commit

Permalink
lmtp: proxy: Renamed client_proxy_rcpt_parse_fields() to lmtp_proxy_r…
Browse files Browse the repository at this point in the history
…cpt_parse_fields().
  • Loading branch information
stephanbosch committed Dec 7, 2017
1 parent 447ae13 commit 582f781
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lmtp/lmtp-proxy.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 582f781

Please sign in to comment.