File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10931,7 +10931,7 @@ run_fs() {
10931
10931
# Versions of TLS prior to 1.3 close the connection if the client does not support the curve
10932
10932
# used in the certificate. The easiest solution is to move the curves to the end of the list.
10933
10933
# instead of removing them from the ClientHello. This is only needed if there is no RSA certificate.
10934
- if ( ! "$HAS_TLS13" || [[ "$proto" == "-no_tls1_3" ]]) && [[ ! "$ecdhe_cipher_list" == *RSA* ]]; then
10934
+ if { ! "$HAS_TLS13" || [[ "$proto" == "-no_tls1_3" ]]; } && [[ ! "$ecdhe_cipher_list" == *RSA* ]]; then
10935
10935
while true; do
10936
10936
curves_to_test=""
10937
10937
for (( i=low; i < high; i++ )); do
@@ -11001,7 +11001,7 @@ run_fs() {
11001
11001
# Versions of TLS prior to 1.3 close the connection if the client does not support the curve
11002
11002
# used in the certificate. The easiest solution is to move the curves to the end of the list.
11003
11003
# instead of removing them from the ClientHello. This is only needed if there is no RSA certificate.
11004
- if ( [[ "$proto" == 03 ]] && [[ ! "$ecdhe_cipher_list" == *RSA* ]]) ; then
11004
+ if [[ "$proto" == 03 ]] && [[ ! "$ecdhe_cipher_list" == *RSA* ]]; then
11005
11005
while true; do
11006
11006
curves_to_test=""
11007
11007
for (( i=0; i < nr_curves; i++ )); do
You can’t perform that action at this time.
0 commit comments