From: Timo Sirainen Date: Thu, 27 May 2010 17:26:23 +0000 (+0100) Subject: Compiler warning fix. X-Git-Tag: 2.0.beta6~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea34b115bb420f67b44f46f3974413e8d326ab55;p=thirdparty%2Fdovecot%2Fcore.git Compiler warning fix. --HG-- branch : HEAD --- diff --git a/src/util/tcpwrap.c b/src/util/tcpwrap.c index 82414e1a5e..bad6a5a1fe 100644 --- a/src/util/tcpwrap.c +++ b/src/util/tcpwrap.c @@ -99,7 +99,7 @@ static void tcpwrap_client_destroy(struct tcpwrap_client **_client) master_service_client_connection_destroyed(master_service); } -static void client_connected(const struct master_service_connection *conn) +static void client_connected(struct master_service_connection *conn) { if (tcpwrap_client != NULL) { i_error("tcpwrap must be configured with client_limit=1");