diff options
-rw-r--r-- | lib/curl_ntlm_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_ntlm_core.c b/lib/curl_ntlm_core.c index c6765ecae..2aaea4db8 100644 --- a/lib/curl_ntlm_core.c +++ b/lib/curl_ntlm_core.c @@ -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); } |