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

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


details:   http://hg.dovecot.org/dovecot-2.0/rev/df84d8a0efbf
changeset: 9561:df84d8a0efbf
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 77b6f05df645 -r df84d8a0efbf 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
@@ -313,7 +313,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