http: fix "error: equality comparison with extraneous parentheses"

This commit is contained in:
Daniel Stenberg 2019-05-29 08:17:08 +02:00
parent 6961322f70
commit 5908009e31
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 1 additions and 1 deletions

View File

@ -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)