diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-06-07 18:44:36 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-06-07 20:32:27 +0100 |
commit | 4468bfff7dc28b9c54a5225d3f10a6aa6a67a1d9 (patch) | |
tree | 25e730a87a93fc6a8e5218b028ace0612fa09e4d /test/lib | |
parent | 61e6a90d3193848fc07a024a0b0e4aaf644adc8a (diff) |
Testsuite: OpenSSL version differencesexim-4.96-RC2
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/Exim/Runtest.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm index 7ba079051..6c2262f55 100644 --- a/test/lib/Exim/Runtest.pm +++ b/test/lib/Exim/Runtest.pm @@ -120,7 +120,7 @@ sub flavour { } if (open(my $f, '-|', 'openssl version')) { - <$f> =~ /1.1.1/ && return "openssl_1_1_1"; + <$f> =~ /(1\.1\.1|3\.\d+\.\d+)/ && return "openssl_1_1_1"; } if (open(my $f, '<', "$etc/os-release")) { |