mirror of
https://github.com/curl/curl.git
synced 2025-09-15 08:32:41 +03:00
typecasts to prevent warnings
This commit is contained in:
parent
d095b20d1c
commit
94568f884d
|
@ -317,10 +317,10 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
|
||||||
|
|
||||||
/* not set means empty */
|
/* not set means empty */
|
||||||
if(!userp)
|
if(!userp)
|
||||||
userp="";
|
userp=(char *)"";
|
||||||
|
|
||||||
if(!passwdp)
|
if(!passwdp)
|
||||||
passwdp="";
|
passwdp=(char *)"";
|
||||||
|
|
||||||
switch(ntlm->state) {
|
switch(ntlm->state) {
|
||||||
case NTLMSTATE_TYPE1:
|
case NTLMSTATE_TYPE1:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user