Fixed typo in OpenSSL version detection

master
thooge 4 years ago committed by GitHub
parent 82a7a8a01e
commit 37773d4f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/OpenSSL.pm

@ -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;