Fixed typo in OpenSSL version detection

This commit is contained in:
thooge 2020-11-08 15:15:53 +01:00 committed by GitHub
parent 82a7a8a01e
commit 37773d4f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ sub new {
close(TEST);
# set version (format: e.g. 0.9.7 or 0.9.7a)
if($v =~ /\b(0\.\d\.\d[a-z]?)\b/) {
if($v =~ /\b(\d\.\d\.\d[a-z]?)\b/) {
$self->{'version'} = $1;
} else {
chomp $v;