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 8f3c00d64..79aeb08b3 100644 --- a/lib/curl_ntlm_core.c +++ b/lib/curl_ntlm_core.c @@ -421,7 +421,7 @@ CURLcode Curl_ntlm_core_mk_nt_hash(struct SessionHandle *data,  #elif defined(USE_NSS)      Curl_md4it(ntbuffer, pw, 2 * len);  #elif defined(USE_DARWINSSL) -    (void)CC_MD4(pw, 2 * len, ntbuffer); +    (void)CC_MD4(pw, (CC_LONG)(2 * len), ntbuffer);  #endif      memset(ntbuffer + 16, 0, 21 - 16); | 
