summaryrefslogtreecommitdiff
path: root/source3/rpc_server/dcesrv_ntlmssp.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/rpc_server/dcesrv_ntlmssp.c')
-rw-r--r--source3/rpc_server/dcesrv_ntlmssp.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/source3/rpc_server/dcesrv_ntlmssp.c b/source3/rpc_server/dcesrv_ntlmssp.c
index 87c8e0bece..fd5b820143 100644
--- a/source3/rpc_server/dcesrv_ntlmssp.c
+++ b/source3/rpc_server/dcesrv_ntlmssp.c
@@ -43,17 +43,12 @@ NTSTATUS ntlmssp_server_auth_start(TALLOC_CTX *mem_ctx,
return status;
}
- /* Clear flags, then set them according to requested flags */
- auth_ntlmssp_and_flags(a, ~(NTLMSSP_NEGOTIATE_SIGN |
- NTLMSSP_NEGOTIATE_SEAL));
-
if (do_sign) {
- auth_ntlmssp_or_flags(a, NTLMSSP_NEGOTIATE_SIGN);
+ auth_ntlmssp_want_feature(a, NTLMSSP_FEATURE_SIGN);
}
if (do_seal) {
/* Always implies both sign and seal for ntlmssp */
- auth_ntlmssp_or_flags(a, NTLMSSP_NEGOTIATE_SIGN |
- NTLMSSP_NEGOTIATE_SEAL);
+ auth_ntlmssp_want_feature(a, NTLMSSP_FEATURE_SEAL);
}
status = auth_ntlmssp_update(a, mem_ctx, *token_in, token_out);