From 5af8ea0a24c5930a8e310ebc4f33fba1d084217c Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 2 Jul 2008 09:45:24 +0300 Subject: [PATCH] "Empty password returned without no_password" message -> "nopassword". --HG-- branch : HEAD --- src/auth/passdb-ldap.c | 2 +- src/auth/passdb-sql.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auth/passdb-ldap.c b/src/auth/passdb-ldap.c index 5df127a779..678842611c 100644 --- a/src/auth/passdb-ldap.c +++ b/src/auth/passdb-ldap.c @@ -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, diff --git a/src/auth/passdb-sql.c b/src/auth/passdb-sql.c index 7943c0c505..ac5e536212 100644 --- a/src/auth/passdb-sql.c +++ b/src/auth/passdb-sql.c @@ -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, -- 2.47.3