mirror of
https://github.com/curl/curl.git
synced 2026-08-06 21:26:14 +03:00
drop casts for CURLAUTH_ANY 1
This commit is contained in:
parent
331206475b
commit
107d3314d9
3 changed files with 3 additions and 3 deletions
|
|
@ -751,7 +751,7 @@ static CURLcode proxy_setopts(struct OperationConfig *config, CURL *curl)
|
|||
|
||||
/* new in libcurl 7.10.6 */
|
||||
if(config->proxyanyauth)
|
||||
my_setopt_bitmask(curl, CURLOPT_PROXYAUTH, (long)CURLAUTH_ANY);
|
||||
my_setopt_bitmask(curl, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
|
||||
else if(config->proxynegotiate)
|
||||
my_setopt_bitmask(curl, CURLOPT_PROXYAUTH, CURLAUTH_GSSNEGOTIATE);
|
||||
else if(config->proxyntlm)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue