changeset 9188:8f8b5e2f8df7 HEAD

pop3: Fixed AUTH PLAIN command when SASL initial response wasn't specified.
author Timo Sirainen <tss@iki.fi>
date Tue, 07 Jul 2009 13:20:24 -0400
parents d6337be8ae30
children ee173ea99ea6
files src/pop3-login/client-authenticate.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 @@
 	p = strchr(args, ' ');
 	if (p == NULL) {
 		mech_name = args;
-		args = "";
+		args = NULL;
 	} else {
 		mech_name = t_strdup_until(args, p);
 		args = p+1;