mirror of
https://github.com/curl/curl.git
synced 2026-07-23 21:07:17 +03:00
curl_ntlm_core.c: Fixed compilation warning from commit 1cb17b2a5d
curl_ntlm_core.c:146: warning: passing 'DES_cblock' (aka 'unsigned char
[8]') to parameter of type 'char *' converts
between pointers to integer types with different
sign
This commit is contained in:
parent
1cb17b2a5d
commit
0ea9381b7d
1 changed files with 1 additions and 1 deletions
|
|
@ -143,7 +143,7 @@ static void setup_des_key(const unsigned char *key_56,
|
|||
{
|
||||
DES_cblock key;
|
||||
|
||||
extend_key_56_to_64(key_56, key);
|
||||
extend_key_56_to_64(key_56, (char *) key);
|
||||
DES_set_odd_parity(&key);
|
||||
DES_set_key(&key, ks);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue