From 468fb4fee49aa0cd1919fcd3803d2490e2ac568d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 14 Dec 2009 19:43:59 +1100 Subject: s3:auth Make get_ntlm_challenge more like Samba4 This helps with the upcoming NTLMSSP merge, and allows errors to be returned. Andrew Bartlett --- source3/include/auth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/auth.h') diff --git a/source3/include/auth.h b/source3/include/auth.h index efae56ae52..09ad631936 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -91,8 +91,8 @@ struct auth_context { /* What order are the various methods in? Try to stop it changing under us */ struct auth_methods *auth_method_list; - void (*get_ntlm_challenge)(struct auth_context *auth_context, - uint8_t chal[8]); + 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); -- cgit