Commit e4a3d0f9 authored by Richard Levitte's avatar Richard Levitte
Browse files

Correct the no-dh and no-dsa fix



The condition wasn't quite right

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2702)
parent a0179d0a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ my %conf_dependent_tests = (
  "10-resumption.conf" => !$is_default_tls,
  "11-dtls_resumption.conf" => !$is_default_dtls,
  "19-mac-then-encrypt.conf" => !$is_default_tls,
  "20-cert-select.conf" => !$is_default_tls && !$no_dh && !$no_dsa,
  "20-cert-select.conf" => !$is_default_tls || $no_dh || $no_dsa,
);

# Add your test here if it should be skipped for some compile-time