1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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 */
if(!userp)
userp="";
userp=(char *)"";
if(!passwdp)
passwdp="";
passwdp=(char *)"";
switch(ntlm->state) {
case NTLMSTATE_TYPE1: