summaryrefslogtreecommitdiff
path: root/source3/libsmb/clientgen.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-10-25 16:23:42 +0000
committerLuke Leighton <lkcl@samba.org>1999-10-25 16:23:42 +0000
commit2adba4bfbbe360cd8c1eca1b90354fd63c503dd0 (patch)
tree1d77b1ac4112149cfde8f333b8d25d843bcd30f1 /source3/libsmb/clientgen.c
parent8e1f542ddf97fef925a88e2c3d9c1e82fb2f6683 (diff)
downloadsamba-2adba4bfbbe360cd8c1eca1b90354fd63c503dd0.tar.gz
samba-2adba4bfbbe360cd8c1eca1b90354fd63c503dd0.tar.bz2
samba-2adba4bfbbe360cd8c1eca1b90354fd63c503dd0.zip
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) (This used to be commit 96d8e14f50fda8047d209fa0b94b98a95ce51f21)
Diffstat (limited to 'source3/libsmb/clientgen.c')
-rw-r--r--source3/libsmb/clientgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c
index d792eeeaa1..4bffb5aa3e 100644
--- a/source3/libsmb/clientgen.c
+++ b/source3/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);