From 5b7c813104c652cfa215090361946ab33e8f0679 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 28 Mar 2007 13:26:43 +0000 Subject: r21999: remove useless casts metze (This used to be commit f948005ca69c50b07fdbcf7801975676d19d1486) --- source3/auth/auth_util.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source3/auth') diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 7a12508a3b..0afcabcf07 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 */ -- cgit