From c9d0ee977c929f6a46905ff74cc221aaa028af74 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 21 May 2003 05:20:54 +0000 Subject: merge LANMAN1/LANMAN2.1 fixes from head (This used to be commit 73c686ab771b6c3e9a9335032f851083d44701c7) --- source3/smbd/negprot.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/smbd/negprot.c') diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c index db0694a840..bd1b9b0d57 100644 --- a/source3/smbd/negprot.c +++ b/source3/smbd/negprot.c @@ -101,6 +101,7 @@ static int reply_lanman1(char *inbuf, char *outbuf) /* Create a token value and add it to the outgoing packet. */ if (global_encrypted_passwords_negotiated) { get_challenge(smb_buf(outbuf)); + SSVAL(outbuf,smb_vwv11, 8); } Protocol = PROTOCOL_LANMAN1; @@ -144,6 +145,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) { get_challenge(smb_buf(outbuf)); + SSVAL(outbuf,smb_vwv11, 8); } Protocol = PROTOCOL_LANMAN2; -- cgit