]> granicus.if.org Git - curl/commitdiff
http: fix "error: equality comparison with extraneous parentheses"
authorDaniel Stenberg <daniel@haxx.se>
Wed, 29 May 2019 06:17:08 +0000 (08:17 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 29 May 2019 06:17:08 +0000 (08:17 +0200)
lib/http.c

index 338c59a22ccc010e5155c85c6727d38592b6b137..1d11c218f52433a500bdfd974ee8521a44ace983 100644 (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)