summaryrefslogtreecommitdiff
path: root/source4/libcli
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-15 08:59:25 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-15 08:59:25 +0000
commit6a3ef87d3ee58c9704f60fe7ae0897036fec9b29 (patch)
treee910fb52449ba701cb0d2fcd027709a8366d572c /source4/libcli
parenta90db73efd985283a3402c69fae94d10813b22d8 (diff)
downloadsamba-6a3ef87d3ee58c9704f60fe7ae0897036fec9b29.tar.gz
samba-6a3ef87d3ee58c9704f60fe7ae0897036fec9b29.tar.bz2
samba-6a3ef87d3ee58c9704f60fe7ae0897036fec9b29.zip
make sure we allow clients to negotiate ntlmssp seal if they want it
(This used to be commit a1275c1e89462f0a3cce73066777055c3c970b76)
Diffstat (limited to 'source4/libcli')
-rw-r--r--source4/libcli/auth/ntlmssp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/libcli/auth/ntlmssp.c b/source4/libcli/auth/ntlmssp.c
index 9ee71a2d28..5fd3938a7d 100644
--- a/source4/libcli/auth/ntlmssp.c
+++ b/source4/libcli/auth/ntlmssp.c
@@ -743,7 +743,8 @@ NTSTATUS ntlmssp_server_start(NTLMSSP_STATE **ntlmssp_state)
NTLMSSP_NEGOTIATE_NTLM |
// NTLMSSP_NEGOTIATE_NTLM2 |
NTLMSSP_NEGOTIATE_KEY_EXCH |
- NTLMSSP_NEGOTIATE_SIGN;
+ NTLMSSP_NEGOTIATE_SIGN |
+ NTLMSSP_NEGOTIATE_SEAL;
return NT_STATUS_OK;
}