]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Add login username in "Attempted master login with no master passdbs" error.
authorTimo Sirainen <tss@iki.fi>
Wed, 19 Nov 2008 18:09:34 +0000 (20:09 +0200)
committerTimo Sirainen <tss@iki.fi>
Wed, 19 Nov 2008 18:09:34 +0000 (20:09 +0200)
--HG--
branch : HEAD

src/auth/auth-request.c

index d224f8bdfd6e48ee75d00c8be97a572c56c77e34..1b1325c7cd2e79211ba57642a194c6fbd5dacab3 100644 (file)
@@ -470,7 +470,9 @@ void auth_request_verify_plain(struct auth_request *request,
                 /* no masterdbs, master logins not supported */
                 i_assert(request->requested_login_user != NULL);
                auth_request_log_info(request, "passdb",
-                       "Attempted master login with no master passdbs");
+                       "Attempted master login with no master passdbs "
+                       "(trying to log in as user: %s)",
+                       request->requested_login_user);
                callback(PASSDB_RESULT_USER_UNKNOWN, request);
                return;
        }