Commit 94568f88 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecasts to prevent warnings

parent d095b20d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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: