[dovecot-cvs] dovecot/src/auth auth-request-handler.c, 1.12.2.5, 1.12.2.6

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


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

Modified Files:
      Tag: branch_1_0
	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.12.2.5
retrieving revision 1.12.2.6
diff -u -d -r1.12.2.5 -r1.12.2.6
--- auth-request-handler.c	5 Nov 2006 16:12:13 -0000	1.12.2.5
+++ auth-request-handler.c	7 Nov 2006 13:59:28 -0000	1.12.2.6
@@ -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