From 94568f884dc30614f30918c9cca8cff40cc6c936 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 17 Oct 2003 12:44:54 +0000 Subject: [PATCH] typecasts to prevent warnings --- lib/http_ntlm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 902af59bc0..ed7a519aef 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: