dovecot-1.1: deliver: Don't set "username=1" environment.

dovecot at dovecot.org dovecot at dovecot.org
Tue Dec 16 04:59:30 EET 2008


details:   http://hg.dovecot.org/dovecot-1.1/rev/3145be9f66ae
changeset: 8049:3145be9f66ae
user:      Timo Sirainen <tss at iki.fi>
date:      Tue Dec 16 04:59:24 2008 +0200
description:
deliver: Don't set "username=1" environment.

diffstat:

1 file changed, 2 insertions(+), 1 deletion(-)
src/deliver/auth-client.c |    3 ++-

diffs (13 lines):

diff -r f9a000ee400d -r 3145be9f66ae src/deliver/auth-client.c
--- a/src/deliver/auth-client.c	Sun Dec 14 08:36:10 2008 +0200
+++ b/src/deliver/auth-client.c	Tue Dec 16 04:59:24 2008 +0200
@@ -100,7 +100,8 @@ static void auth_parse_input(struct auth
 	bool debug = getenv("DEBUG") != NULL;
 	unsigned int len;
 
-	for (tmp = t_strsplit(args, "\t"); *tmp != NULL; tmp++) {
+	tmp = t_strsplit(args, "\t");
+	for (tmp++; *tmp != NULL; tmp++) {
 		if (debug)
 			i_info("auth input: %s", *tmp);
 


More information about the dovecot-cvs mailing list