From: Daniel Stenberg Date: Fri, 17 Oct 2003 12:44:54 +0000 (+0000) Subject: typecasts to prevent warnings X-Git-Tag: curl-7_10_8~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94568f884dc30614f30918c9cca8cff40cc6c936;p=curl typecasts to prevent warnings --- diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 902af59bc..ed7a519ae 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -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: