Unverified Commit 5908009e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent 6961322f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -644,7 +644,7 @@ output_auth_headers(struct connectdata *conn,
#endif
#endif


#ifdef USE_SPNEGO
#ifdef USE_SPNEGO
  if((authstatus->picked == CURLAUTH_NEGOTIATE)) {
  if(authstatus->picked == CURLAUTH_NEGOTIATE) {
    auth = "Negotiate";
    auth = "Negotiate";
    result = Curl_output_negotiate(conn, proxy);
    result = Curl_output_negotiate(conn, proxy);
    if(result)
    if(result)