From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jon Murphy To: development@lists.ipfire.org Subject: [PATCH] services.cgi: avoid experimental warnings Date: Mon, 16 Jan 2023 14:34:04 -0600 Message-ID: <20230116203404.3723490-1-jon.murphy@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1551018410447167817==" List-Id: --===============1551018410447167817== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit - add single line to code: no warnings 'experimental'; - corrects this issue: https://lists.ipfire.org/pipermail/development/2022-December/015113.html Signed-off-by: Jon Murphy --- html/cgi-bin/services.cgi | 1 + 1 file changed, 1 insertion(+) diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index 3c0f27f99..0d06ab5fe 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -21,6 +21,7 @@ use strict; use feature "switch"; +no warnings 'experimental'; # enable only the following on debugging purpose #use warnings; #use CGI::Carp 'fatalsToBrowser'; -- 2.30.2 --===============1551018410447167817==--