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().
This commit is contained in:
David Cooper 2019-10-28 10:15:05 -04:00 committed by GitHub
parent b64f5afaea
commit 42c8769983
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18847,7 +18847,7 @@ initialize_globals() {
do_tls_sockets=false
do_client_simulation=false
do_display_only=false
do_starttls=true
do_starttls=false
}