]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
"Empty password returned without no_password" message -> "nopassword".
authorTimo Sirainen <tss@iki.fi>
Wed, 2 Jul 2008 06:45:24 +0000 (09:45 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 2 Jul 2008 06:45:24 +0000 (09:45 +0300)
--HG--
branch : HEAD

src/auth/passdb-ldap.c
src/auth/passdb-sql.c

index 5df127a779535daa2d219ec35bf4e166e1bb4a0a..678842611c2e417493ff053df1d7b2d4fcde5afd 100644 (file)
@@ -118,7 +118,7 @@ ldap_lookup_pass_callback(struct ldap_connection *conn,
        } else if (auth_request->passdb_password == NULL &&
                   !auth_request->no_password) {
                auth_request_log_info(auth_request, "ldap",
-                       "Empty password returned without no_password");
+                       "Empty password returned without nopassword");
                passdb_result = PASSDB_RESULT_PASSWORD_MISMATCH;
        } else {
                /* passdb_password may change on the way,
index 7943c0c505184226f6f3a020f7d9e2667957a9c7..ac5e536212d5e32c326e5f6b82b3f6b5c3bf1590 100644 (file)
@@ -89,7 +89,7 @@ static void sql_query_callback(struct sql_result *result,
                } else if (auth_request->passdb_password == NULL &&
                           !auth_request->no_password) {
                        auth_request_log_info(auth_request, "sql",
-                               "Empty password returned without no_password");
+                               "Empty password returned without nopassword");
                        passdb_result = PASSDB_RESULT_PASSWORD_MISMATCH;
                } else {
                        /* passdb_password may change on the way,