typecasts to prevent warnings

This commit is contained in:
Daniel Stenberg 2003-10-17 12:44:54 +00:00
parent d095b20d1c
commit 94568f884d

View File

@ -317,10 +317,10 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
/* not set means empty */ /* not set means empty */
if(!userp) if(!userp)
userp=""; userp=(char *)"";
if(!passwdp) if(!passwdp)
passwdp=""; passwdp=(char *)"";
switch(ntlm->state) { switch(ntlm->state) {
case NTLMSTATE_TYPE1: case NTLMSTATE_TYPE1: