]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Compiler warning fix.
authorTimo Sirainen <tss@iki.fi>
Thu, 21 Oct 2010 16:12:19 +0000 (17:12 +0100)
committerTimo Sirainen <tss@iki.fi>
Thu, 21 Oct 2010 16:12:19 +0000 (17:12 +0100)
src/lib-master/master-login-auth.c

index ccec34dba1f72f4575510221f1f9817ffa4ee056..374740c9835ff78423048c238f8e5970221bfe3a 100644 (file)
@@ -374,7 +374,8 @@ master_login_auth_send_request(struct master_login_auth *auth,
        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);