From f60d90ff621920ca7dcf121881536e8f34b47493 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 21 May 2003 05:18:23 +0000 Subject: we weren't filling in the keylength in LANMAN1 and LANMAN2.1 negprot reply. Seems to have been broken for a long time! (This used to be commit a16415a6c9a0dc011acb7e6419c55dd535c5e400) --- source3/smbd/negprot.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/smbd') diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c index db0694a840..66cd835240 100644 --- a/source3/smbd/negprot.c +++ b/source3/smbd/negprot.c @@ -100,6 +100,7 @@ static int reply_lanman1(char *inbuf, char *outbuf) SSVAL(outbuf,smb_vwv1,secword); /* Create a token value and add it to the outgoing packet. */ if (global_encrypted_passwords_negotiated) { + SSVAL(outbuf,smb_vwv11, 8); get_challenge(smb_buf(outbuf)); } @@ -143,6 +144,7 @@ static int reply_lanman2(char *inbuf, char *outbuf) /* Create a token value and add it to the outgoing packet. */ if (global_encrypted_passwords_negotiated) { + SSVAL(outbuf,smb_vwv11, 8); get_challenge(smb_buf(outbuf)); } -- cgit