Merge pull request #2678 from dcooper16/fix_typo

Fix typo
This commit is contained in:
Dirk Wetter 2025-03-05 09:13:12 +01:00 committed by GitHub
commit f555fb050e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17037,7 +17037,7 @@ run_ticketbleed() {
"$HAS_TLS13" && tls_proto="-no_tls1_3"
$OPENSSL s_client $(s_client_options "$STARTTLS $BUGS $tls_proto -connect $NODEIP:$PORT $PROXY") >$TMPFILE 2>$ERRFILE </dev/null
sclient_connect_successful $? "$TMPFILE"
if [$? -ne 0 ]]; then
if [[ $? -ne 0 ]]; then
prln_warning "Cannot test for ticketbleed. Your OpenSSL cannot connect to $NODEIP:$PORT"
fileout "$jsonID" "WARN" "Cannot test for ticketbleed. Your OpenSSL cannot connect to $NODEIP:$PORT."
return 1