mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
http: fix "error: equality comparison with extraneous parentheses"
This commit is contained in:
parent
6961322f70
commit
5908009e31
@ -644,7 +644,7 @@ output_auth_headers(struct connectdata *conn,
|
||||
#endif
|
||||
|
||||
#ifdef USE_SPNEGO
|
||||
if((authstatus->picked == CURLAUTH_NEGOTIATE)) {
|
||||
if(authstatus->picked == CURLAUTH_NEGOTIATE) {
|
||||
auth = "Negotiate";
|
||||
result = Curl_output_negotiate(conn, proxy);
|
||||
if(result)
|
||||
|
Loading…
Reference in New Issue
Block a user