diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-27 13:52:27 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-08-03 18:48:03 +1000 |
commit | 1231b784a1a30c475960d429465ca104c906801c (patch) | |
tree | 9decd7f8e750744c7689c93f1241d8aad580552c /source3/libads | |
parent | da4345a8d1da94ac879b876ad826fa4ea7b95efd (diff) | |
download | samba-1231b784a1a30c475960d429465ca104c906801c.tar.gz samba-1231b784a1a30c475960d429465ca104c906801c.tar.bz2 samba-1231b784a1a30c475960d429465ca104c906801c.zip |
s3-ntlmssp Remove auth_ntlmssp_and_flags()
There is no need to mask out these flags as they simply are not set
yet.
The correct abstraction is to ask for NTLMSSP features.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/sasl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/libads/sasl.c b/source3/libads/sasl.c index 45cf569c79..a3001863b8 100644 --- a/source3/libads/sasl.c +++ b/source3/libads/sasl.c @@ -148,7 +148,6 @@ static ADS_STATUS ads_sasl_spnego_ntlmssp_bind(ADS_STRUCT *ads) if (!NT_STATUS_IS_OK(nt_status)) { return ADS_ERROR_NT(nt_status); } - ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_SIGN; if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_username(ntlmssp_state, ads->auth.user_name))) { return ADS_ERROR_NT(nt_status); |