From: Timo Sirainen Date: Sat, 14 Dec 2013 12:40:13 +0000 (+0200) Subject: Compiler warning fix X-Git-Tag: 2.2.10~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c0462c156a7b1184acecbfb137d2d6a4af93f15;p=thirdparty%2Fdovecot%2Fcore.git Compiler warning fix --- diff --git a/src/lib-master/master-auth.c b/src/lib-master/master-auth.c index 5a98e4c9db..f116b23346 100644 --- a/src/lib-master/master-auth.c +++ b/src/lib-master/master-auth.c @@ -111,7 +111,7 @@ static void master_auth_connection_input(struct master_auth_connection *conn) if (ret == 0 || errno == ECONNRESET) { i_error("read(%s) failed: Remote closed connection " "(service's process_limit reached?)", - conn->auth->path, conn->auth->path); + conn->auth->path); } else { if (errno == EAGAIN) return;