dovecot-2.0: Compiler warning fix.

dovecot at dovecot.org dovecot at dovecot.org
Thu Oct 21 19:12:22 EEST 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/f38e4e1465c8
changeset: 12329:f38e4e1465c8
user:      Timo Sirainen <tss at iki.fi>
date:      Thu Oct 21 17:12:19 2010 +0100
description:
Compiler warning fix.

diffstat:

 src/lib-master/master-login-auth.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 745ef289b0ea -r f38e4e1465c8 src/lib-master/master-login-auth.c
--- a/src/lib-master/master-login-auth.c	Thu Oct 21 17:11:02 2010 +0100
+++ b/src/lib-master/master-login-auth.c	Thu Oct 21 17:12:19 2010 +0100
@@ -374,7 +374,8 @@
 	if (auth->auth_server_pid != req->auth_pid) {
 		/* auth server was restarted. don't even attempt a login. */
 		i_warning("Auth server restarted (pid %u -> %u), aborting auth",
-			  req->auth_pid, auth->auth_server_pid);
+			  (unsigned int)req->auth_pid,
+			  (unsigned int)auth->auth_server_pid);
 		master_login_auth_request_remove(auth, req);
 		req->callback(NULL, MASTER_AUTH_ERRMSG_INTERNAL_FAILURE,
 			      req->context);


More information about the dovecot-cvs mailing list