changeset 7965:72a560a00def HEAD

"Empty password returned without no_password" message -> "nopassword".
author Timo Sirainen <tss@iki.fi>
date Wed, 02 Jul 2008 09:45:24 +0300
parents 639f6fb48277
children 54225d0b6e2b
files src/auth/passdb-ldap.c src/auth/passdb-sql.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/auth/passdb-ldap.c	Tue Jul 01 23:33:17 2008 +0300
+++ b/src/auth/passdb-ldap.c	Wed Jul 02 09:45:24 2008 +0300
@@ -118,7 +118,7 @@
 	} 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,
--- a/src/auth/passdb-sql.c	Tue Jul 01 23:33:17 2008 +0300
+++ b/src/auth/passdb-sql.c	Wed Jul 02 09:45:24 2008 +0300
@@ -89,7 +89,7 @@
 		} 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,