diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-03-28 13:26:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:58 -0500 |
commit | 5b7c813104c652cfa215090361946ab33e8f0679 (patch) | |
tree | ae0d71beb26066174aba53fe87b322ab61043b2d /source3/auth | |
parent | cece5a62ae564a8f7f4eeb0e2376e04ff041bdd9 (diff) | |
download | samba-5b7c813104c652cfa215090361946ab33e8f0679.tar.gz samba-5b7c813104c652cfa215090361946ab33e8f0679.tar.xz samba-5b7c813104c652cfa215090361946ab33e8f0679.zip |
r21999: remove useless casts
metze
(This used to be commit f948005ca69c50b07fdbcf7801975676d19d1486)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_util.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 7a12508a3bd..0afcabcf076 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -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 */ |