Author: metze
Date: 2007-05-16 13:25:16 +0000 (Wed, 16 May 2007)
New Revision: 22937

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22937

Log:
merge 21999 from SAMBA_3_0

remove useless casts

metze

Modified:
   branches/SAMBA_3_0_26/source/auth/auth_util.c


Changeset:
Modified: branches/SAMBA_3_0_26/source/auth/auth_util.c
===================================================================
--- branches/SAMBA_3_0_26/source/auth/auth_util.c       2007-05-16 13:18:52 UTC 
(rev 22936)
+++ branches/SAMBA_3_0_26/source/auth/auth_util.c       2007-05-16 13:25:16 UTC 
(rev 22937)
@@ -241,8 +241,8 @@
                                         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 @@
 #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 @@
 #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 */

Reply via email to