From c17131685cc7febea6f09c7029c26e9993f8bc91 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 16 Dec 2011 16:38:53 +1100 Subject: s3-auth remove auth_ntlmssp_start(), call auth_generic_start() directly This makes it clear that this can support more than just NTLMSSP. Andrew Bartlett Signed-off-by: Stefan Metzmacher --- source3/smbd/seal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/seal.c') diff --git a/source3/smbd/seal.c b/source3/smbd/seal.c index fc811deb3c..be5f9506d0 100644 --- a/source3/smbd/seal.c +++ b/source3/smbd/seal.c @@ -88,7 +88,7 @@ static NTSTATUS make_auth_ntlmssp(const struct tsocket_address *remote_address, gensec_want_feature(auth_ntlmssp_state->gensec_security, GENSEC_FEATURE_SEAL); - status = auth_ntlmssp_start(auth_ntlmssp_state); + status = auth_generic_start(auth_ntlmssp_state, GENSEC_OID_NTLMSSP); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(auth_ntlmssp_state); -- cgit