From 3f079885b21f22ec4f27cccaa6f59ebce0e56067 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 18 Oct 2011 21:43:40 +1100 Subject: s3-ntlmssp Remove auth_ntlmssp_want_feature() We now just call the gensec_want_feature() directly. Andrew Bartlett Signed-off-by: Stefan Metzmacher --- source3/rpc_client/cli_pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/rpc_client/cli_pipe.c') diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 9af351b274..9a2aa409a0 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -2306,9 +2306,9 @@ static NTSTATUS rpccli_ntlmssp_bind_data(TALLOC_CTX *mem_ctx, } if (auth_level == DCERPC_AUTH_LEVEL_INTEGRITY) { - auth_ntlmssp_want_feature(ntlmssp_ctx, NTLMSSP_FEATURE_SIGN); + gensec_want_feature(ntlmssp_ctx->gensec_security, GENSEC_FEATURE_SIGN); } else if (auth_level == DCERPC_AUTH_LEVEL_PRIVACY) { - auth_ntlmssp_want_feature(ntlmssp_ctx, NTLMSSP_FEATURE_SEAL); + gensec_want_feature(ntlmssp_ctx->gensec_security, GENSEC_FEATURE_SEAL); } status = auth_ntlmssp_client_start(ntlmssp_ctx); -- cgit