diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-12-16 16:38:53 +1100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-12-22 19:25:10 +0100 |
commit | c17131685cc7febea6f09c7029c26e9993f8bc91 (patch) | |
tree | ff1b1eeff6ea82ee756a6f61265c569cb038832b /source3/auth | |
parent | 1100f6eca568bdf725922eff09988559d2714e45 (diff) | |
download | samba-c17131685cc7febea6f09c7029c26e9993f8bc91.tar.gz samba-c17131685cc7febea6f09c7029c26e9993f8bc91.tar.bz2 samba-c17131685cc7febea6f09c7029c26e9993f8bc91.zip |
s3-auth remove auth_ntlmssp_start(), call auth_generic_start() directly
This makes it clear that this can support more than just NTLMSSP.
Andrew Bartlett
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_ntlmssp.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/auth/auth_ntlmssp.c b/source3/auth/auth_ntlmssp.c index 0f09ae1021..6ca6be7c89 100644 --- a/source3/auth/auth_ntlmssp.c +++ b/source3/auth/auth_ntlmssp.c @@ -457,8 +457,3 @@ NTSTATUS auth_generic_authtype_start(struct auth_generic_state *auth_ntlmssp_sta return NT_STATUS_OK; } - -NTSTATUS auth_ntlmssp_start(struct auth_generic_state *auth_ntlmssp_state) -{ - return auth_generic_start(auth_ntlmssp_state, GENSEC_OID_NTLMSSP); -} |