blockcheck: do not scream if TLS1.3 and tls-max both not supported

This commit is contained in:
bol-van 2022-02-02 10:59:44 +03:00
parent a98bf2fe7c
commit f0a9246fd9

View File

@ -737,7 +737,7 @@ ask_params()
ENABLE_HTTP=1
ask_yes_no_var ENABLE_HTTP "check http"
[ -n "$TLSMAX12" ] || echo "WARNING ! your curl version or TLS library does not support tls-max option. TLS 1.2 tests may use TLS 1.3+ protocols"
[ -z "$TLSMAX12" -a -n "$TLS13" ] && echo "WARNING ! your curl version or TLS library does not support tls-max option. TLS 1.2 tests may use TLS 1.3+ protocols"
ENABLE_HTTPS_TLS12=1
ask_yes_no_var ENABLE_HTTPS_TLS12 "check https tls 1.2"