Browse Source

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

Daniel Stenberg 5 years ago
parent
commit
5908009e31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/http.c

+ 1 - 1
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)