aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/test_https_get_iovec.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-04 18:57:06 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-05 18:42:20 +0300
commitf7747015d8dc0d362fa3fb2cc7670d5a690edef8 (patch)
tree276a419116919add27e675984868c960f4e589b3 /src/testcurl/https/test_https_get_iovec.c
parentf069ee365d4cedb9854924ab2f6b96476b64319f (diff)
downloadlibmicrohttpd-f7747015d8dc0d362fa3fb2cc7670d5a690edef8.tar.gz
libmicrohttpd-f7747015d8dc0d362fa3fb2cc7670d5a690edef8.zip
testcurl/https: do not enforce TLSv1
Usage of concrete TLS version is not future-proof. Relay on default version setting by libcurl/TLS lib.
Diffstat (limited to 'src/testcurl/https/test_https_get_iovec.c')
-rw-r--r--src/testcurl/https/test_https_get_iovec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcurl/https/test_https_get_iovec.c b/src/testcurl/https/test_https_get_iovec.c
index 7b99ff68..c5ff7cb4 100644
--- a/src/testcurl/https/test_https_get_iovec.c
+++ b/src/testcurl/https/test_https_get_iovec.c
@@ -408,7 +408,7 @@ main (int argc, char *const *argv)
408 } 408 }
409 409
410 errorCount += 410 errorCount +=
411 test_secure_get (NULL, NULL, CURL_SSLVERSION_TLSv1); 411 test_secure_get (NULL, NULL, CURL_SSLVERSION_DEFAULT);
412 errorCount += testEmptyGet (0); 412 errorCount += testEmptyGet (0);
413 curl_global_cleanup (); 413 curl_global_cleanup ();
414 414