[dovecot-cvs] dovecot/src/auth userdb-sql.c,1.17,1.18

tss at dovecot.org tss at dovecot.org
Thu Dec 21 15:57:32 UTC 2006


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

Modified Files:
	userdb-sql.c 
Log Message:
"Password query" -> "User query" in error messages.



Index: userdb-sql.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-sql.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- userdb-sql.c	15 Dec 2006 18:38:08 -0000	1.17
+++ userdb-sql.c	21 Dec 2006 15:57:30 -0000	1.18
@@ -66,12 +66,12 @@
 
 	if (uid == (uid_t)-1) {
 		auth_request_log_error(auth_request, "sql",
-			"Password query didn't return uid, or it was NULL");
+			"User query didn't return uid, or it was NULL");
 		return NULL;
 	}
 	if (gid == (gid_t)-1) {
 		auth_request_log_error(auth_request, "sql",
-			"Password query didn't return gid, or it was NULL");
+			"User query didn't return gid, or it was NULL");
 		return NULL;
 	}
 



More information about the dovecot-cvs mailing list