From: Stefan Metzmacher Date: Wed, 28 Mar 2007 13:26:43 +0000 (+0000) Subject: r21999: remove useless casts X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~825 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f948005ca69c50b07fdbcf7801975676d19d1486;p=thirdparty%2Fsamba.git r21999: remove useless casts metze --- diff --git a/source/auth/auth_util.c b/source/auth/auth_util.c index 7a12508a3bd..0afcabcf076 100644 --- a/source/auth/auth_util.c +++ b/source/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 */