Skip to content

Commit df6cd77

Browse files
authored
Merge pull request #3075 from lapo-luchini/3.3dev_fix_escaping
Fix escaping.
2 parents 56ba1ab + 0db7ab0 commit df6cd77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

testssl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21525,8 +21525,8 @@ find_openssl_binary() {
2152521525

2152621526
# In order to avoid delays due to lookups of the hostname "invalid." we just try to avoid using "-connect invalid."
2152721527
# when possible. The following does a check fopr that. For WSL we stick for now to the old scheme. Not sure about Cygwin
21528-
if [[ SYSTEM2 == "WSL" ]]; then
21529-
NXCONNECT=-connect $NXDNS
21528+
if [[ $SYSTEM2 == "WSL" ]]; then
21529+
NXCONNECT="-connect $NXDNS"
2153021530
else
2153121531
# If this connects and bails out with an error message, we do not need "-connect invalid."
2153221532
if $OPENSSL s_client 2>&1 </dev/null | grep -Eiaq 'Connection refused|connect error|Bad file descriptor'; then

0 commit comments

Comments
 (0)