diff options
author | Luke Leighton <lkcl@samba.org> | 1999-10-25 16:23:42 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-10-25 16:23:42 +0000 |
commit | 96d8e14f50fda8047d209fa0b94b98a95ce51f21 (patch) | |
tree | 8896eca1b1ac1de8518efcf952ba87be956b4380 | |
parent | 19490d8b4fb8a103f3df4e6104f6f22937b0c518 (diff) | |
download | samba-96d8e14f50fda8047d209fa0b94b98a95ce51f21.tar.gz samba-96d8e14f50fda8047d209fa0b94b98a95ce51f21.tar.xz samba-96d8e14f50fda8047d209fa0b94b98a95ce51f21.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)
-rw-r--r-- | source/libsmb/clientgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |