From ae4dfa6778ced1ae5873bcd3c3ba6c6af4d50678 Mon Sep 17 00:00:00 2001 From: Fabian Franz Date: Mon, 27 Jun 2016 19:15:40 +0200 Subject: [PATCH] fix for the boot issue in openvpn_get_engines(); closes #1038 --- src/etc/inc/openvpn.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/openvpn.inc b/src/etc/inc/openvpn.inc index 43a3f9653..d87c0f8c1 100644 --- a/src/etc/inc/openvpn.inc +++ b/src/etc/inc/openvpn.inc @@ -193,7 +193,7 @@ function openvpn_get_digestlist() function openvpn_get_engines() { $openssl_engines = array('none' => 'No Hardware Crypto Acceleration'); - exec('/usr/local/bin/openssl engine -t -c', $openssl_engine_output); + exec('/usr/local/bin/openssl engine -t -c 2> /dev/null', $openssl_engine_output); if (!count($openssl_engine_output)) { /* LibreSSL doesn't offer anything of value */