[dovecot-cvs] dovecot/src/auth auth-request-handler.c,1.18,1.19

tss at dovecot.org tss at dovecot.org
Tue Nov 7 13:59:34 UTC 2006


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

Modified Files:
	auth-request-handler.c 
Log Message:
Missing TAB before "pass" broke proxying.



Index: auth-request-handler.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/auth-request-handler.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- auth-request-handler.c	5 Nov 2006 16:12:14 -0000	1.18
+++ auth-request-handler.c	7 Nov 2006 13:59:31 -0000	1.19
@@ -140,7 +140,7 @@
 	if (request->proxy && !seen_pass && request->mech_password != NULL) {
 		/* we're proxying - send back the password that was
 		   sent by user (not the password in passdb). */
-		str_printfa(str, "pass=%s", request->mech_password);
+		str_printfa(str, "\tpass=%s", request->mech_password);
 	}
 
 	return str_len(str) == 0 ? NULL : str_c(str);



More information about the dovecot-cvs mailing list