From: Volker Lendecke Date: Fri, 5 Feb 2021 14:00:00 +0000 (+0100) Subject: auth3: Make it a bit easier to #include "source3/include/auth.h" X-Git-Tag: tevent-0.11.0~1534 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6ccf1b91ba54d64b088a27002a12578f95ad63f;p=thirdparty%2Fsamba.git auth3: Make it a bit easier to #include "source3/include/auth.h" Avoid using "uchar" in source3/auth/proto.h, this is #defined in includes.h Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/auth/proto.h b/source3/auth/proto.h index 097b17fee44..c0c7b0123a4 100644 --- a/source3/auth/proto.h +++ b/source3/auth/proto.h @@ -180,9 +180,9 @@ bool make_user_info_netlogon_network(TALLOC_CTX *mem_ctx, const struct tsocket_address *remote_address, const struct tsocket_address *local_address, uint32_t logon_parameters, - const uchar *lm_network_pwd, + const unsigned char *lm_network_pwd, int lm_pwd_len, - const uchar *nt_network_pwd, + const unsigned char *nt_network_pwd, int nt_pwd_len); bool make_user_info_netlogon_interactive(TALLOC_CTX *mem_ctx, struct auth_usersupplied_info **user_info, @@ -192,9 +192,9 @@ bool make_user_info_netlogon_interactive(TALLOC_CTX *mem_ctx, const struct tsocket_address *remote_address, const struct tsocket_address *local_address, uint32_t logon_parameters, - const uchar chal[8], - const uchar lm_interactive_pwd[16], - const uchar nt_interactive_pwd[16]); + const unsigned char chal[8], + const unsigned char lm_interactive_pwd[16], + const unsigned char nt_interactive_pwd[16]); bool make_user_info_for_reply(TALLOC_CTX *mem_ctx, struct auth_usersupplied_info **user_info, const char *smb_name,