]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: commands: Renamed client_get_input() to cmd_data_get_input().
authorStephan Bosch <stephan.bosch@dovecot.fi>
Mon, 30 Oct 2017 00:13:33 +0000 (01:13 +0100)
committerStephan Bosch <stephan.bosch@dovecot.fi>
Thu, 7 Dec 2017 23:10:07 +0000 (00:10 +0100)
src/lmtp/commands.c

index 361f1ce78830e0b10ed48e1b592bd6c92f7e9a7e..10123b715a5325a6b83e5f8f5158df88ace60e07 100644 (file)
@@ -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) {