From 607f4d564f9540cda6cf5b127f2414625a11741a Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 1 Sep 2017 22:15:13 +0200 Subject: [PATCH] Fix OpenSSL::Test::Utils::config to actualy load the config data Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4319) --- util/perl/OpenSSL/Test/Utils.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/util/perl/OpenSSL/Test/Utils.pm b/util/perl/OpenSSL/Test/Utils.pm index 665bfc6310..7b0a705636 100644 --- a/util/perl/OpenSSL/Test/Utils.pm +++ b/util/perl/OpenSSL/Test/Utils.pm @@ -155,6 +155,7 @@ sub available_protocols { } sub config { + load_configdata() unless $configdata_loaded; return $config{$_[0]}; } -- 2.34.1