Skip to content
Snippets Groups Projects
Commit 9d077490 authored by Ville Skyttä's avatar Ville Skyttä Committed by Ville Skyttä
Browse files

Fix tab output in OpenSSL 3 checker script

parent 0bcd9a0d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -89,7 +89,7 @@ options that you can use to enforce specific TLS version or ciphers:
# NOTE: The cipher will be combined with any TLSv1.3 cipher suites that
# have been configured.
if openssl s_client -${tls_version} -cipher "${cipher}" -connect ${SERVER} </dev/null >/dev/null 2>&1; then
echo "\t${cipher}"
printf "\t%s\n" "${cipher}"
fi
done
done
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment