dovecot-1.2: pop3: Fixed AUTH PLAIN command when SASL initial re...

dovecot at dovecot.org dovecot at dovecot.org
Tue Jul 7 20:20:29 EEST 2009


details:   http://hg.dovecot.org/dovecot-1.2/rev/8f8b5e2f8df7
changeset: 9188:8f8b5e2f8df7
user:      Timo Sirainen <tss at iki.fi>
date:      Tue Jul 07 13:20:24 2009 -0400
description:
pop3: Fixed AUTH PLAIN command when SASL initial response wasn't specified.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/pop3-login/client-authenticate.c |    2 +-

diffs (12 lines):

diff -r d6337be8ae30 -r 8f8b5e2f8df7 src/pop3-login/client-authenticate.c
--- a/src/pop3-login/client-authenticate.c	Tue Jul 07 12:40:31 2009 -0400
+++ b/src/pop3-login/client-authenticate.c	Tue Jul 07 13:20:24 2009 -0400
@@ -319,7 +319,7 @@ bool cmd_auth(struct pop3_client *client
 	p = strchr(args, ' ');
 	if (p == NULL) {
 		mech_name = args;
-		args = "";
+		args = NULL;
 	} else {
 		mech_name = t_strdup_until(args, p);
 		args = p+1;


More information about the dovecot-cvs mailing list