mirror of
https://github.com/curl/curl.git
synced 2026-08-24 14:03:35 +03:00
typecasts to prevent warnings
This commit is contained in:
parent
d095b20d1c
commit
94568f884d
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue