dovecot-1.1: auth: Improved "Password not in expected scheme" er...

dovecot at dovecot.org dovecot at dovecot.org
Tue May 26 20:48:28 EEST 2009


details:   http://hg.dovecot.org/dovecot-1.1/rev/3c37d55abc6e
changeset: 8291:3c37d55abc6e
user:      Timo Sirainen <tss at iki.fi>
date:      Tue May 26 13:48:18 2009 -0400
description:
auth: Improved "Password not in expected scheme" error message.

diffstat:

2 files changed, 2 insertions(+), 2 deletions(-)
src/auth/auth-request.c |    2 +-
src/auth/passdb.c       |    2 +-

diffs (24 lines):

diff -r 48cec9cce8d6 -r 3c37d55abc6e src/auth/auth-request.c
--- a/src/auth/auth-request.c	Mon May 25 21:52:55 2009 -0400
+++ b/src/auth/auth-request.c	Tue May 26 13:48:18 2009 -0400
@@ -1323,7 +1323,7 @@ int auth_request_password_verify(struct 
 	if (ret <= 0) {
 		if (ret < 0) {
 			auth_request_log_error(request, subsystem,
-				"Invalid password format for scheme %s",
+				"Password in passdb is not in expected scheme %s",
 				scheme);
 		} else {
 			auth_request_log_error(request, subsystem,
diff -r 48cec9cce8d6 -r 3c37d55abc6e src/auth/passdb.c
--- a/src/auth/passdb.c	Mon May 25 21:52:55 2009 -0400
+++ b/src/auth/passdb.c	Tue May 26 13:48:18 2009 -0400
@@ -66,7 +66,7 @@ bool passdb_get_credentials(struct auth_
 	if (ret <= 0) {
 		if (ret < 0) {
 			auth_request_log_error(auth_request, "password",
-				"Invalid password format for scheme %s",
+				"Password in passdb is not in expected scheme %s",
 				input_scheme);
 		} else {
 			auth_request_log_error(auth_request, "password",


More information about the dovecot-cvs mailing list