From: Stephan Bosch Date: Mon, 30 Oct 2017 00:13:33 +0000 (+0100) Subject: lmtp: commands: Renamed client_get_input() to cmd_data_get_input(). X-Git-Tag: 2.3.0.rc1~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d41037c2b3e258e4e1fc73366d3fb191ffce64b6;p=thirdparty%2Fdovecot%2Fcore.git lmtp: commands: Renamed client_get_input() to cmd_data_get_input(). --- diff --git a/src/lmtp/commands.c b/src/lmtp/commands.c index 361f1ce788..10123b715a 100644 --- a/src/lmtp/commands.c +++ b/src/lmtp/commands.c @@ -296,7 +296,7 @@ int cmd_noop(struct client *client, const char *args ATTR_UNUSED) * DATA command */ -static struct istream *client_get_input(struct client *client) +static struct istream *cmd_data_get_input(struct client *client) { struct client_state *state = &client->state; struct istream *cinput, *inputs[3]; @@ -378,7 +378,7 @@ static void client_input_data_write(struct client *client) client->state.data_end_timeval = ioloop_timeval; - input = client_get_input(client); + input = cmd_data_get_input(client); if (lmtp_local_rcpt_count(client) != 0) lmtp_local_data(client, input); if (client->proxy != NULL) {