changeset 9561:df84d8a0efbf 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 77b6f05df645
children 90f8e2d091b5
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
@@ -313,7 +313,7 @@
 	p = strchr(args, ' ');
 	if (p == NULL) {
 		mech_name = args;
-		args = "";
+		args = NULL;
 	} else {
 		mech_name = t_strdup_until(args, p);
 		args = p+1;