summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-05-29 08:17:08 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-05-29 08:17:08 +0200
commit5908009e318d070e5ba6765e47a96c61b100c273 (patch)
treeebfb111d3c2c04501e8ccc4e8569045d01eb9724
parent6961322f707e210729d504854647e6bca06279e5 (diff)
downloadcurl-5908009e318d070e5ba6765e47a96c61b100c273.tar.gz
http: fix "error: equality comparison with extraneous parentheses"
-rw-r--r--lib/http.c2
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)