diff options
-rw-r--r-- | lib/http_ntlm.c | 4 |
1 files changed, 2 insertions, 2 deletions
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: |