[dovecot-cvs] dovecot/src/auth userdb-ldap.c, 1.46, 1.47 userdb-sql.c, 1.19, 1.20

tss at dovecot.org tss at dovecot.org
Wed Apr 18 14:53:45 EEST 2007


Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv7186

Modified Files:
	userdb-ldap.c userdb-sql.c 
Log Message:
s/User not found/Unknown user/ to be consistent



Index: userdb-ldap.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-ldap.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- userdb-ldap.c	6 Mar 2007 18:50:37 -0000	1.46
+++ userdb-ldap.c	18 Apr 2007 11:53:43 -0000	1.47
@@ -157,7 +157,7 @@
 		if (res != NULL) {
 			result = USERDB_RESULT_USER_UNKNOWN;
 			auth_request_log_error(auth_request, "ldap",
-					       "Authenticated user not found");
+					       "Unknown user");
 		}
 	} else {
 		reply = ldap_query_get_result(conn, entry, auth_request);

Index: userdb-sql.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-sql.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- userdb-sql.c	21 Dec 2006 16:01:15 -0000	1.19
+++ userdb-sql.c	18 Apr 2007 11:53:43 -0000	1.20
@@ -94,7 +94,7 @@
 				       sql_result_get_error(sql_result));
 	} else if (ret == 0) {
 		result = USERDB_RESULT_USER_UNKNOWN;
-		auth_request_log_info(auth_request, "sql", "User not found");
+		auth_request_log_info(auth_request, "sql", "Unknown user");
 	} else {
 		reply = sql_query_get_result(sql_result, auth_request);
 		if (reply != NULL)



More information about the dovecot-cvs mailing list