diff options
author | Jeremy Allison <jra@samba.org> | 2003-09-16 01:28:09 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-09-16 01:28:09 +0000 |
commit | 6df89dbe1020736f25a01b1e319e849f8db89851 (patch) | |
tree | da5806ee3539ed648aacce20c0eb40349eeac812 /source3/libsmb/ntlmssp.c | |
parent | 77adfbf4605bddeb1211586bb4ea4b1042ddbcd5 (diff) | |
download | samba-6df89dbe1020736f25a01b1e319e849f8db89851.tar.gz samba-6df89dbe1020736f25a01b1e319e849f8db89851.tar.bz2 samba-6df89dbe1020736f25a01b1e319e849f8db89851.zip |
Fix #442 which Alexander considered a showstopper. Allow us to join mixed
mode domains.
Jeremy.
(This used to be commit 07cfce283004d29d1f60e5d8c97e3e3d7c293805)
Diffstat (limited to 'source3/libsmb/ntlmssp.c')
-rw-r--r-- | source3/libsmb/ntlmssp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/libsmb/ntlmssp.c b/source3/libsmb/ntlmssp.c index 42bf18d1d2..c51b599b04 100644 --- a/source3/libsmb/ntlmssp.c +++ b/source3/libsmb/ntlmssp.c @@ -692,6 +692,12 @@ NTSTATUS ntlmssp_client_start(NTLMSSP_CLIENT_STATE **ntlmssp_state) NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_NTLM2 | NTLMSSP_NEGOTIATE_KEY_EXCH | + /* + * We need to set this to allow a later SetPassword + * via the SAMR pipe to succeed. Strange.... We could + * also add NTLMSSP_NEGOTIATE_SEAL here. JRA. + * */ + NTLMSSP_NEGOTIATE_SIGN | NTLMSSP_REQUEST_TARGET; (*ntlmssp_state)->ref_count = 1; |