aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-17 12:44:54 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-17 12:44:54 +0000
commit94568f884dc30614f30918c9cca8cff40cc6c936 (patch)
treeed90013ebf84b3e22e2e20b6d23db0cab95e57da /lib
parentd095b20d1c1dd0bb5d10d55c7207b28ebf058d31 (diff)
typecasts to prevent warnings
Diffstat (limited to 'lib')
-rw-r--r--lib/http_ntlm.c4
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: