mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-01 06:19: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%%,*}"
|
curve_found="${curve_found%%,*}"
|
||||||
fi
|
fi
|
||||||
for (( i=low; i < high; i++ )); do
|
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
|
done
|
||||||
[[ $i -eq $high ]] && break
|
[[ $i -eq $high ]] && break
|
||||||
supported_curve[i]=true
|
supported_curve[i]=true
|
||||||
|
Loading…
Reference in New Issue
Block a user