From: Richard Levitte Date: Fri, 1 Sep 2017 20:15:13 +0000 (+0200) Subject: Fix OpenSSL::Test::Utils::config to actualy load the config data X-Git-Tag: OpenSSL_1_1_0g~76 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=90507fbb5c880e2903be2321f6054b3cebebda4c;p=oweals%2Fopenssl.git Fix OpenSSL::Test::Utils::config to actualy load the config data Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4319) (cherry picked from commit 607f4d564f9540cda6cf5b127f2414625a11741a) --- diff --git a/test/testlib/OpenSSL/Test/Utils.pm b/test/testlib/OpenSSL/Test/Utils.pm index 665bfc6310..7b0a705636 100644 --- a/test/testlib/OpenSSL/Test/Utils.pm +++ b/test/testlib/OpenSSL/Test/Utils.pm @@ -155,6 +155,7 @@ sub available_protocols { } sub config { + load_configdata() unless $configdata_loaded; return $config{$_[0]}; }