mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-29 04:49:44 +01:00
Merge pull request #2141 from dcooper16/ossl3_compat
OpenSSL compatibility fix
This commit is contained in:
commit
e82178719d
@ -10517,7 +10517,10 @@ run_fs() {
|
||||
curve_found="${curve_found%%,*}"
|
||||
fi
|
||||
for (( i=low; i < high; i++ )); do
|
||||
! "${supported_curve[i]}" && [[ "${curves_ossl_output[i]}" == "$curve_found" ]] && break
|
||||
if ! "${supported_curve[i]}"; then
|
||||
[[ "${curves_ossl_output[i]}" == "$curve_found" ]] && break
|
||||
[[ "${curves_ossl[i]}" == "$curve_found" ]] && break
|
||||
fi
|
||||
done
|
||||
[[ $i -eq $high ]] && break
|
||||
supported_curve[i]=true
|
||||
|
Loading…
Reference in New Issue
Block a user