From 235a6a0f88b634a576d8f918d5bed02dbd851cf6 Mon Sep 17 00:00:00 2001 From: Dirk Date: Wed, 11 Jun 2025 19:02:06 +0200 Subject: [PATCH] add another OPENSSL_CONF='' --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 89e6d26..6ac4651 100755 --- a/testssl.sh +++ b/testssl.sh @@ -20973,7 +20973,7 @@ find_openssl_binary() { # We also check, whether there's $OPENSSL2 which has TLS 1.3 if [[ ! "$OSSL_NAME" =~ LibreSSL ]] && [[ ! $OSSL_VER =~ 1.1.1 ]] && [[ $OSSL_VER_MAJOR -lt 3 ]]; then OPENSSL_CONF='' $OPENSSL2 s_client -help 2>$s_client_has2 - $OPENSSL2 s_client -starttls foo 2>$s_client_starttls_has2 + OPENSSL_CONF='' $OPENSSL2 s_client -starttls foo 2>$s_client_starttls_has2 grep -q 'Unix-domain socket' $s_client_has2 && HAS_UDS2=true grep -q 'xmpp-server' $s_client_starttls_has2 && HAS_XMPP_SERVER2=true # Likely we don't need the following second check here, see 6 lines above