]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
pop3c: Compiler warning fix for using wrong enum type
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Tue, 26 Jan 2016 21:51:16 +0000 (23:51 +0200)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Tue, 26 Jan 2016 21:51:16 +0000 (23:51 +0200)
src/lib-storage/index/pop3c/pop3c-client.c

index 8eba22e3532d83ebfd01a620c5e3b10dd481f145..9388568de6322b00819c5cb82fc4d9d29fb8bb75 100644 (file)
@@ -737,7 +737,7 @@ static int
 pop3c_client_input_next_reply(struct pop3c_client *client)
 {
        const char *line;
-       enum pop3c_client_state state;
+       enum pop3c_command_state state;
 
        line = i_stream_read_next_line(client->input);
        if (line == NULL)