diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-29 08:17:08 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-29 08:17:08 +0200 |
commit | 5908009e318d070e5ba6765e47a96c61b100c273 (patch) | |
tree | ebfb111d3c2c04501e8ccc4e8569045d01eb9724 /lib | |
parent | 6961322f707e210729d504854647e6bca06279e5 (diff) |
http: fix "error: equality comparison with extraneous parentheses"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 338c59a22..1d11c218f 100644 --- a/lib/http.c +++ b/lib/http.c @@ -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) |