From e3cebef0cf93ddade8e698ea292d2c03cf005a7b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 3 Feb 2012 16:33:44 +1100 Subject: auth: Rename some elements of auth4_context These operate on NTLM authentication, so make that clear. Andrew Bartlett --- source4/auth/ntlm/auth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/auth/ntlm/auth.c') diff --git a/source4/auth/ntlm/auth.c b/source4/auth/ntlm/auth.c index 5c65da955d..58a12fbc53 100644 --- a/source4/auth/ntlm/auth.c +++ b/source4/auth/ntlm/auth.c @@ -605,9 +605,9 @@ _PUBLIC_ NTSTATUS auth_context_create_methods(TALLOC_CTX *mem_ctx, const char ** DLIST_ADD_END(ctx->methods, method, struct auth_method_context *); } - ctx->check_password = auth_check_password_wrapper; - ctx->get_challenge = auth_get_challenge; - ctx->set_challenge = auth_context_set_challenge; + ctx->check_ntlm_password = auth_check_password_wrapper; + ctx->get_ntlm_challenge = auth_get_challenge; + ctx->set_ntlm_challenge = auth_context_set_challenge; ctx->challenge_may_be_modified = auth_challenge_may_be_modified; ctx->generate_session_info = auth_generate_session_info_wrapper; ctx->generate_session_info_pac = auth_generate_session_info_pac; -- cgit