summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-08-08 14:05:16 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-08-08 14:06:42 +1000
commitbf0f1f6d1a6a970621e40428963923ed7341e003 (patch)
treea8bde8bd48d76cad53c2585c5ac89935e48ea028 /source4
parent08d20ece96942aa7c96ec79a3c23f29db45105e3 (diff)
downloadsamba-bf0f1f6d1a6a970621e40428963923ed7341e003.tar.gz
samba-bf0f1f6d1a6a970621e40428963923ed7341e003.tar.bz2
samba-bf0f1f6d1a6a970621e40428963923ed7341e003.zip
Always set a session key, even for the 'no password' case.
This is for bug 5664 reported by Tom <hto@arcor.de>. Andrew Bartlett (This used to be commit b345c9cf535af35c83da040ac965d9690dc802fe)
Diffstat (limited to 'source4')
-rw-r--r--source4/auth/ntlm/auth_sam.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/auth/ntlm/auth_sam.c b/source4/auth/ntlm/auth_sam.c
index 2c13cd963d..1b8233b8a4 100644
--- a/source4/auth/ntlm/auth_sam.c
+++ b/source4/auth/ntlm/auth_sam.c
@@ -156,6 +156,8 @@ static NTSTATUS authsam_password_ok(struct auth_context *auth_context,
if (lp_null_passwords(auth_context->lp_ctx)) {
DEBUG(3,("Account for user '%s' has no password and null passwords are allowed.\n",
user_info->mapped.account_name));
+ *lm_sess_key = data_blob(NULL, 0);
+ *user_sess_key = data_blob(NULL, 0);
return NT_STATUS_OK;
} else {
DEBUG(3,("Account for user '%s' has no password and null passwords are NOT allowed.\n",