From: Timo Sirainen Date: Tue, 26 Jan 2016 21:51:16 +0000 (+0200) Subject: pop3c: Compiler warning fix for using wrong enum type X-Git-Tag: 2.2.22.rc1~272 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ac936bd9c3fd2b54d38daa9f5a78bd8328873bb;p=thirdparty%2Fdovecot%2Fcore.git pop3c: Compiler warning fix for using wrong enum type --- diff --git a/src/lib-storage/index/pop3c/pop3c-client.c b/src/lib-storage/index/pop3c/pop3c-client.c index 8eba22e353..9388568de6 100644 --- a/src/lib-storage/index/pop3c/pop3c-client.c +++ b/src/lib-storage/index/pop3c/pop3c-client.c @@ -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)