From d3481b160c1ae4e77b202739df562d0961f6e259 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 30 Apr 2005 08:09:47 +0000 Subject: r6522: I have no idea why this change was made, but it not only breaks connections to Win2k3, it doesn't match the well-known behaviour from samba3. Andrew Bartlett (This used to be commit 99c9afe45a345e78d7492fe01463922460d66e99) --- source4/auth/ntlmssp/ntlmssp_client.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/auth/ntlmssp/ntlmssp_client.c b/source4/auth/ntlmssp/ntlmssp_client.c index df5cbab524..8bbeb74490 100644 --- a/source4/auth/ntlmssp/ntlmssp_client.c +++ b/source4/auth/ntlmssp/ntlmssp_client.c @@ -177,7 +177,6 @@ NTSTATUS ntlmssp_client_challenge(struct gensec_security *gensec_security, password = cli_credentials_get_password(gensec_security->credentials); if (!password) { - static const uint8_t zero[1]; static const uint8_t zeros[16]; /* do nothing - blobs are zero length */ @@ -185,7 +184,7 @@ NTSTATUS ntlmssp_client_challenge(struct gensec_security *gensec_security, session_key = data_blob_talloc(gensec_ntlmssp_state, zeros, 16); lm_session_key = data_blob_talloc(gensec_ntlmssp_state, zeros, 16); - lm_response = data_blob_talloc(gensec_ntlmssp_state, zero, 1); + lm_response = data_blob(NULL, 0); nt_response = data_blob(NULL, 0); /* not doing NLTM2 without a password */ -- cgit