diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-02-03 21:58:44 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-03-08 10:14:05 +0100 |
commit | 77602d877e755b2672b136704b039d85797fe305 (patch) | |
tree | 2145edafe1b4a97eda738c54e89056583c563353 /source3/include | |
parent | 50547a9950062311a4952846960b15e1d6cdfdf5 (diff) | |
download | samba-77602d877e755b2672b136704b039d85797fe305.tar.gz samba-77602d877e755b2672b136704b039d85797fe305.tar.bz2 samba-77602d877e755b2672b136704b039d85797fe305.zip |
s3-auth: Remove single-implementation plugin layer
The ->get_ntlm_challenge and ->check_ntlm_password elements of struct auth_context
were only ever initialised to a single value. Make it easier to follow by
just calling the function directly.
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/auth.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/include/auth.h b/source3/include/auth.h index 894b7dff81..7f2c3e5db7 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -84,12 +84,6 @@ struct auth_context { /* What order are the various methods in? Try to stop it changing under us */ struct auth_methods *auth_method_list; - NTSTATUS (*get_ntlm_challenge)(struct auth_context *auth_context, - uint8_t chal[8]); - NTSTATUS (*check_ntlm_password)(const struct auth_context *auth_context, - const struct auth_usersupplied_info *user_info, - struct auth_serversupplied_info **server_info); - prepare_gensec_fn prepare_gensec; make_auth4_context_fn make_auth4_context; }; |