summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2012-11-04 10:57:33 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2012-11-04 10:57:33 +0000
commit0586b97f2562a1356c21eb6b8835dc9f9bf833b5 (patch)
treece3ebb1bec062c0720f7076f6dd2bca576fa5f9e /content/fetchers
parentd31e8a7b29ea7b3dd3838c628fcfe30d2269859d (diff)
downloadnetsurf-0586b97f2562a1356c21eb6b8835dc9f9bf833b5.tar.gz
netsurf-0586b97f2562a1356c21eb6b8835dc9f9bf833b5.tar.bz2
Revert "Suppress BEAST workaround."
This reverts commit d31e8a7b29ea7b3dd3838c628fcfe30d2269859d.
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/curl.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index d4b80ce5c..f33dfde50 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -645,9 +645,6 @@ fetch_curl_set_options(struct curl_fetch_info *f)
/* do verification */
SETOPT(CURLOPT_SSL_VERIFYPEER, 1L);
SETOPT(CURLOPT_SSL_VERIFYHOST, 2L);
-#if LIBCURL_VERSION_NUM >= 0x071900
- SETOPT(CURLOPT_SSL_OPTIONS, CURLSSLOPT_ALLOW_BEAST);
-#endif
if (curl_with_openssl) {
SETOPT(CURLOPT_SSL_CTX_FUNCTION, fetch_curl_sslctxfun);
SETOPT(CURLOPT_SSL_CTX_DATA, f);