gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 129/173: tool_operate: Show HTTPS-Proxy options on


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 129/173: tool_operate: Show HTTPS-Proxy options on CURLE_SSL_CACERT
Date: Fri, 24 Feb 2017 14:02:31 +0100

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

ng0 pushed a commit to annotated tag gnurl-7.53.1
in repository gnurl.

commit e1187c42a4b58f16343d2da653be00c36d930e16
Author: Jay Satiro <address@hidden>
AuthorDate: Sat Feb 11 16:35:47 2017 -0500

    tool_operate: Show HTTPS-Proxy options on CURLE_SSL_CACERT
    
    When CURLE_SSL_CACERT occurs the tool shows a lengthy error message to
    the user explaining possible solutions such as --cacert and --insecure.
    
    This change appends to that message similar options --proxy-cacert and
    --proxy-insecure when there's a specified HTTPS proxy.
    
    Closes https://github.com/curl/curl/issues/1258
---
 src/tool_operate.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/tool_operate.c b/src/tool_operate.c
index db53d0d5a..ef4f74a2b 100644
--- a/src/tool_operate.c
+++ b/src/tool_operate.c
@@ -1678,8 +1678,13 @@ static CURLcode operate_do(struct GlobalConfig *global,
           fprintf(global->errors, "curl: (%d) %s\n", result, (errorbuffer[0]) ?
                   errorbuffer : curl_easy_strerror(result));
           if(result == CURLE_SSL_CACERT)
-            fprintf(global->errors, "%s%s",
-                    CURL_CA_CERT_ERRORMSG1, CURL_CA_CERT_ERRORMSG2);
+            fprintf(global->errors, "%s%s%s",
+                    CURL_CA_CERT_ERRORMSG1, CURL_CA_CERT_ERRORMSG2,
+                    ((config->proxy &&
+                      curl_strnequal(config->proxy, "https://";, 8)) ?
+                     "HTTPS proxy has similar options --proxy-cacert "
+                     "and --proxy-insecure.\n" :
+                     ""));
         }
 
         /* Fall through comment to 'quit_urls' label */

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



reply via email to

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