diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-10-17 12:44:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-10-17 12:44:54 +0000 |
commit | 94568f884dc30614f30918c9cca8cff40cc6c936 (patch) | |
tree | ed90013ebf84b3e22e2e20b6d23db0cab95e57da | |
parent | d095b20d1c1dd0bb5d10d55c7207b28ebf058d31 (diff) |
typecasts to prevent warnings
-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: |