1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

r21999: remove useless casts

metze
(This used to be commit f948005ca69c50b07fdbcf7801975676d19d1486)
This commit is contained in:
Stefan Metzmacher 2007-03-28 13:26:43 +00:00 committed by Gerald (Jerry) Carter
parent cece5a62ae
commit 5b7c813104

View File

@ -241,8 +241,8 @@ BOOL make_user_info_netlogon_interactive(auth_usersupplied_info **user_info,
const uchar nt_interactive_pwd[16],
const uchar *dc_sess_key)
{
char lm_pwd[16];
char nt_pwd[16];
unsigned char lm_pwd[16];
unsigned char nt_pwd[16];
unsigned char local_lm_response[24];
unsigned char local_nt_response[24];
unsigned char key[16];
@ -268,10 +268,10 @@ BOOL make_user_info_netlogon_interactive(auth_usersupplied_info **user_info,
#endif
if (lm_interactive_pwd)
SamOEMhash((uchar *)lm_pwd, key, sizeof(lm_pwd));
SamOEMhash(lm_pwd, key, sizeof(lm_pwd));
if (nt_interactive_pwd)
SamOEMhash((uchar *)nt_pwd, key, sizeof(nt_pwd));
SamOEMhash(nt_pwd, key, sizeof(nt_pwd));
#ifdef DEBUG_PASSWORD
DEBUG(100,("decrypt of lm owf password:"));
@ -282,11 +282,11 @@ BOOL make_user_info_netlogon_interactive(auth_usersupplied_info **user_info,
#endif
if (lm_interactive_pwd)
SMBOWFencrypt((const unsigned char *)lm_pwd, chal,
SMBOWFencrypt(lm_pwd, chal,
local_lm_response);
if (nt_interactive_pwd)
SMBOWFencrypt((const unsigned char *)nt_pwd, chal,
SMBOWFencrypt(nt_pwd, chal,
local_nt_response);
/* Password info paranoia */