summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-03 16:33:44 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-24 11:23:18 +1100
commite3cebef0cf93ddade8e698ea292d2c03cf005a7b (patch)
treeb100ab80d0f342a6a2ea7dbabce3248ce81ecaf9 /source4/auth
parent8a9b6fe26dc347afd6dc17570354e0af391b351d (diff)
downloadsamba-e3cebef0cf93ddade8e698ea292d2c03cf005a7b.tar.gz
samba-e3cebef0cf93ddade8e698ea292d2c03cf005a7b.tar.bz2
samba-e3cebef0cf93ddade8e698ea292d2c03cf005a7b.zip
auth: Rename some elements of auth4_context
These operate on NTLM authentication, so make that clear. Andrew Bartlett
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/ntlm/auth.c6
1 files changed, 3 insertions, 3 deletions
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;