dovecot-2.0: auth: Improved "Password not in expected scheme" er...
dovecot at dovecot.org
dovecot at dovecot.org
Tue May 26 20:49:00 EEST 2009
details: http://hg.dovecot.org/dovecot-2.0/rev/513691dbe21c
changeset: 9383:513691dbe21c
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 0b3225f7b3a6 -r 513691dbe21c src/auth/auth-request.c
--- a/src/auth/auth-request.c Tue May 26 03:20:40 2009 -0400
+++ b/src/auth/auth-request.c Tue May 26 13:48:18 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 0b3225f7b3a6 -r 513691dbe21c src/auth/passdb.c
--- a/src/auth/passdb.c Tue May 26 03:20:40 2009 -0400
+++ b/src/auth/passdb.c Tue May 26 13:48:18 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