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

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


details:   http://hg.dovecot.org/dovecot-1.2/rev/a4bdf6d119f6
changeset: 9093:a4bdf6d119f6
user:      Timo Sirainen <tss at iki.fi>
date:      Tue May 26 13:48:39 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 73d6117770c7 -r a4bdf6d119f6 src/auth/auth-request.c
--- a/src/auth/auth-request.c	Tue May 26 01:54:36 2009 -0400
+++ b/src/auth/auth-request.c	Tue May 26 13:48:39 2009 -0400
@@ -1297,7 +1297,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 73d6117770c7 -r a4bdf6d119f6 src/auth/passdb.c
--- a/src/auth/passdb.c	Tue May 26 01:54:36 2009 -0400
+++ b/src/auth/passdb.c	Tue May 26 13:48:39 2009 -0400
@@ -72,7 +72,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