]> granicus.if.org Git - curl/commitdiff
typecasts to prevent warnings
authorDaniel Stenberg <daniel@haxx.se>
Fri, 17 Oct 2003 12:44:54 +0000 (12:44 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 17 Oct 2003 12:44:54 +0000 (12:44 +0000)
lib/http_ntlm.c

index 902af59bc08d483ae8657e860ba31bf5c96f65ca..ed7a519aefa02386833c79eb5a522b2a40d9bd96 100644 (file)
@@ -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: