From: Timo Sirainen Date: Wed, 23 Nov 2011 17:11:13 +0000 (+0200) Subject: Compile fix for some compilers. X-Git-Tag: 2.1.rc1~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad0df8e7d7519c0c0129723c860d06a1f84cdb89;p=thirdparty%2Fdovecot%2Fcore.git Compile fix for some compilers. --- diff --git a/src/anvil/anvil-connection.c b/src/anvil/anvil-connection.c index 615226a31d..2a0ac3c639 100644 --- a/src/anvil/anvil-connection.c +++ b/src/anvil/anvil-connection.c @@ -153,7 +153,8 @@ static void anvil_connection_input(void *context) if (anvil_restarted && (conn->master || conn->fifo)) { /* old pending data. ignore input until we get the handshake. */ - return anvil_connection_input(context); + anvil_connection_input(context); + return; } i_error("Anvil client not compatible with this server " "(mixed old and new binaries?) %s", line);