We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a5d93d + cd89134 commit 395907aCopy full SHA for 395907a
1 file changed
testssl.sh
@@ -9851,7 +9851,10 @@ run_pfs() {
9851
curve_found="${curve_found%%,*}"
9852
fi
9853
for (( i=low; i < high; i++ )); do
9854
- ! "${supported_curve[i]}" && [[ "${curves_ossl_output[i]}" == "$curve_found" ]] && break
+ if ! "${supported_curve[i]}"; then
9855
+ [[ "${curves_ossl_output[i]}" == "$curve_found" ]] && break
9856
+ [[ "${curves_ossl[i]}" == "$curve_found" ]] && break
9857
+ fi
9858
done
9859
[[ $i -eq $high ]] && break
9860
supported_curve[i]=true
0 commit comments