r22000: remove useless casts
authorStefan Metzmacher <metze@samba.org>
Wed, 28 Mar 2007 13:31:52 +0000 (13:31 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:18:59 +0000 (12:18 -0500)
metze
(This used to be commit 8f55fe4e4614d73c2534ca87745972f7550875ee)

source3/utils/ntlm_auth_diagnostics.c

index f7997de711e75b2da6a1b42b3fb9dd156d826577..6f829de1dd807b969354cd5643740f9e60588581 100644 (file)
@@ -243,10 +243,10 @@ static BOOL test_ntlm_in_both(void)
        DATA_BLOB nt_response = data_blob(NULL, 24);
        DATA_BLOB session_key = data_blob(NULL, 16);
 
-       char lm_key[8];
-       char lm_hash[16];
-       char user_session_key[16];
-       char nt_hash[16];
+       uint8 lm_key[8];
+       uint8 lm_hash[16];
+       uint8 user_session_key[16];
+       uint8 nt_hash[16];
        DATA_BLOB chall = get_challenge();
        char *error_string;
        
@@ -257,10 +257,10 @@ static BOOL test_ntlm_in_both(void)
        flags |= WBFLAG_PAM_USER_SESSION_KEY;
 
        SMBNTencrypt(opt_password,chall.data,nt_response.data);
-       E_md4hash(opt_password, (unsigned char *)nt_hash);
-       SMBsesskeygen_ntv1((const unsigned char *)nt_hash, NULL, session_key.data);
+       E_md4hash(opt_password, nt_hash);
+       SMBsesskeygen_ntv1(nt_hash, NULL, session_key.data);
 
-       E_deshash(opt_password, (unsigned char *)lm_hash); 
+       E_deshash(opt_password, lm_hash); 
 
        nt_status = contact_winbind_auth_crap(opt_username, opt_domain, 
                                              opt_workstation,
@@ -268,8 +268,8 @@ static BOOL test_ntlm_in_both(void)
                                              &nt_response,
                                              &nt_response,
                                              flags,
-                                             (unsigned char *)lm_key,
-                                             (unsigned char *)user_session_key,
+                                             lm_key,
+                                             user_session_key,
                                              &error_string, NULL);
        
        data_blob_free(&nt_response);