From 42c8769983ecb000356ad66c928bd96a0ac82ff8 Mon Sep 17 00:00:00 2001 From: David Cooper Date: Mon, 28 Oct 2019 10:15:05 -0400 Subject: [PATCH] Fix do_starttls initialization bug At the moment, $do_starttls is initialized to true in initialize_globals() and then it is set to true again in parse_cmd_line() if the --starttls command line option is used. Presumably the intention was to set $do_starttls to false in initialize_globals(). --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 738d7c3..e1c875a 100755 --- a/testssl.sh +++ b/testssl.sh @@ -18847,7 +18847,7 @@ initialize_globals() { do_tls_sockets=false do_client_simulation=false do_display_only=false - do_starttls=true + do_starttls=false }