typecasts to prevent compiler warnings

This commit is contained in:
Daniel Stenberg 2004-06-21 08:37:53 +00:00
parent 0d259b898b
commit 29c546b426
1 changed files with 2 additions and 2 deletions

View File

@ -427,12 +427,12 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
if (user) {
domain = userp;
domlen = user - domain;
domlen = (int)(user - domain);
user++;
}
else
user = userp;
userlen = strlen(user);
userlen = (int)strlen(user);
mkhash(passwdp, &ntlm->nonce[0], lmresp
#ifdef USE_NTRESPONSES