diff options
author | Stefan Metzmacher <metze@samba.org> | 2017-03-17 16:53:27 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2017-04-10 01:11:20 +0200 |
commit | 45227b301fba492edfb57fb52e66564c1ee2de6b (patch) | |
tree | e3b9b428ef94a027f5819aec860145278d2b2e1b /source3 | |
parent | f23af921dfb8876ded0094adb6f7832fb41e6147 (diff) | |
download | samba-45227b301fba492edfb57fb52e66564c1ee2de6b.tar.gz |
auth3: merge make_auth_context_subsystem() into make_auth3_context_for_ntlm()
make_auth3_context_for_ntlm() was the only caller of
make_auth_context_subsystem().
BUG: https://bugzilla.samba.org/show_bug.cgi?id=2976
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12710
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/auth/auth.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/source3/auth/auth.c b/source3/auth/auth.c index 916c524cb68..2c92140194d 100644 --- a/source3/auth/auth.c +++ b/source3/auth/auth.c @@ -500,8 +500,8 @@ static NTSTATUS make_auth_context_specific(TALLOC_CTX *mem_ctx, Make a auth_context struct for the auth subsystem ***************************************************************************/ -static NTSTATUS make_auth_context_subsystem(TALLOC_CTX *mem_ctx, - struct auth_context **auth_context) +NTSTATUS make_auth3_context_for_ntlm(TALLOC_CTX *mem_ctx, + struct auth_context **auth_context) { const char *methods = NULL; NTSTATUS nt_status; @@ -550,12 +550,6 @@ static NTSTATUS make_auth_context_subsystem(TALLOC_CTX *mem_ctx, return make_auth_context_specific(mem_ctx, auth_context, methods); } -NTSTATUS make_auth3_context_for_ntlm(TALLOC_CTX *mem_ctx, - struct auth_context **auth_context) -{ - return make_auth_context_subsystem(mem_ctx, auth_context); -} - NTSTATUS make_auth3_context_for_netlogon(TALLOC_CTX *mem_ctx, struct auth_context **auth_context) { |