From 06f247515728b0cdabb80b5552a7eb530d46ad1a Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Sun, 21 Feb 2021 12:03:51 +0900 Subject: Don't use SECLEVEL when not OPENSSL_TLS_SECURITY_LEVEL --- main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.c b/main.c index 09af238..5e44eb4 100644 --- a/main.c +++ b/main.c @@ -757,7 +757,11 @@ main(int argc, char **argv, char **envp) displayTitleTerm = argv[i] + 7; #ifdef USE_SSL else if (!strcmp("-insecure", argv[i])) { +#ifdef OPENSSL_TLS_SECURITY_LEVEL set_param_option("ssl_cipher=ALL:eNULL:@SECLEVEL=0"); +#else + set_param_option("ssl_cipher=ALL:eNULL"); +#endif #ifdef SSL_CTX_set_min_proto_version set_param_option("ssl_min_version=all"); #endif -- cgit v1.2.3