libs/curl: update to version 7.21.2
[openwrt/svn-archive/archive.git] / libs / curl / patches / 510-no_sslv2.patch
index 9c1089b2efdd71977882066954f75043879cde87..063826e3da10f3414e04f2fe61f4f1be4f421dc8 100644 (file)
@@ -1,31 +1,31 @@
 --- a/lib/ssluse.c
 +++ b/lib/ssluse.c
-@@ -1384,10 +1384,12 @@ ossl_connect_step1(struct connectdata *c
-   case CURL_SSLVERSION_TLSv1:
+@@ -1454,10 +1454,12 @@ ossl_connect_step1(struct connectdata *c
      req_method = TLSv1_client_method();
+     use_sni(TRUE);
      break;
 +#ifndef OPENSSL_NO_SSL2
    case CURL_SSLVERSION_SSLv2:
      req_method = SSLv2_client_method();
-     sni = FALSE;
+     use_sni(FALSE);
      break;
 +#endif
    case CURL_SSLVERSION_SSLv3:
      req_method = SSLv3_client_method();
-     sni = FALSE;
+     use_sni(FALSE);
 --- a/src/main.c
 +++ b/src/main.c
-@@ -824,7 +824,9 @@ static void help(void)
- #endif
-     " -Y/--speed-limit   Stop transfer if below speed-limit for 'speed-time' secs",
+@@ -883,7 +883,9 @@ static void help(void)
      " -y/--speed-time    Time needed to trig speed-limit abort. Defaults to 30",
+     "    --ssl           Try SSL/TLS (FTP, IMAP, POP3, SMTP)",
+     "    --ssl-reqd      Require SSL/TLS (FTP, IMAP, POP3, SMTP)",
 +#ifndef OPENSSL_NO_SSL2
      " -2/--sslv2         Use SSLv2 (SSL)",
 +#endif
      " -3/--sslv3         Use SSLv3 (SSL)",
      "    --stderr <file> Where to redirect stderr. - means stdout",
      "    --tcp-nodelay   Use the TCP_NODELAY option",
-@@ -2228,10 +2230,12 @@ static ParameterError getparameter(char 
+@@ -2445,10 +2447,12 @@ static ParameterError getparameter(char
        /* TLS version 1 */
        config->ssl_version = CURL_SSLVERSION_TLSv1;
        break;