From 96d8e14f50fda8047d209fa0b94b98a95ce51f21 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Mon, 25 Oct 1999 16:23:42 +0000 Subject: the new CAP_EXTENDED_SECURITY code needed to support NTLMv2. also removed switching on CAP_STATUS32 from non-CAP_EXTENDED_SECURITY code (enabled for test purposes only) --- source/libsmb/clientgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libsmb/clientgen.c b/source/libsmb/clientgen.c index d792eeeaa10..4bffb5aa3ed 100644 --- a/source/libsmb/clientgen.c +++ b/source/libsmb/clientgen.c @@ -840,7 +840,7 @@ BOOL cli_session_setup_x(struct cli_state *cli, SIVAL(cli->outbuf,smb_vwv5,cli->sesskey); SSVAL(cli->outbuf,smb_vwv7,passlen); SSVAL(cli->outbuf,smb_vwv8,ntpasslen); - SIVAL(cli->outbuf,smb_vwv11, CAP_STATUS32); + SIVAL(cli->outbuf,smb_vwv11, 0); p = smb_buf(cli->outbuf); memcpy(p,pass,passlen); p += SVAL(cli->outbuf,smb_vwv7); -- cgit