diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-02-03 16:33:44 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-02-24 11:23:18 +1100 |
commit | e3cebef0cf93ddade8e698ea292d2c03cf005a7b (patch) | |
tree | b100ab80d0f342a6a2ea7dbabce3248ce81ecaf9 /source3/auth | |
parent | 8a9b6fe26dc347afd6dc17570354e0af391b351d (diff) | |
download | samba-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 'source3/auth')
-rw-r--r-- | source3/auth/auth_generic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/auth/auth_generic.c b/source3/auth/auth_generic.c index 681989e16b..cf6866c2dd 100644 --- a/source3/auth/auth_generic.c +++ b/source3/auth/auth_generic.c @@ -163,10 +163,10 @@ static struct auth4_context *make_auth4_context_s3(TALLOC_CTX *mem_ctx, struct a } auth4_context->generate_session_info_pac = auth3_generate_session_info_pac; auth4_context->generate_session_info = auth3_generate_session_info; - auth4_context->get_challenge = auth3_get_challenge; - auth4_context->set_challenge = auth3_set_challenge; + auth4_context->get_ntlm_challenge = auth3_get_challenge; + auth4_context->set_ntlm_challenge = auth3_set_challenge; auth4_context->challenge_may_be_modified = auth3_may_set_challenge; - auth4_context->check_password = auth3_check_password; + auth4_context->check_ntlm_password = auth3_check_password; auth4_context->private_data = talloc_steal(auth4_context, auth_context); return auth4_context; } |