gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 40/63: http: fix "error: equality comparison with e


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 40/63: http: fix "error: equality comparison with extraneous parentheses"
Date: Fri, 07 Jun 2019 18:37:02 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 5908009e318d070e5ba6765e47a96c61b100c273
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed May 29 08:17:08 2019 +0200

    http: fix "error: equality comparison with extraneous parentheses"
---
 lib/http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]