changeset 3668:c9f1bd1e1ec2 HEAD

nologin/proxy are now always in boolean format, ie. without any "=Y".
author Timo Sirainen <tss@iki.fi>
date Wed, 19 Oct 2005 16:43:38 +0300
parents b7569a6a4ada
children 09b5e002ad8a
files src/auth/auth-request.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/auth/auth-request.c	Wed Oct 19 16:38:36 2005 +0300
+++ b/src/auth/auth-request.c	Wed Oct 19 16:43:38 2005 +0300
@@ -550,10 +550,12 @@
 		/* user can't actually login - don't keep this
 		   reply for master */
 		request->no_login = TRUE;
+		value = NULL;
 	} else if (strcmp(name, "proxy") == 0) {
 		/* we're proxying authentication for this user. send
 		   password back if using plaintext authentication. */
 		request->proxy = TRUE;
+		value = NULL;
 	}
 
 	if (request->extra_fields == NULL)