From 4941ce0031e9a9f699d0d9ff100f26a6bbce1654 Mon Sep 17 00:00:00 2001 From: Jon Murphy Date: Mon, 16 Jan 2023 14:34:04 -0600 Subject: [PATCH] services.cgi: avoid experimental warnings - 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 Signed-off-by: Michael Tremer --- 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 3c0f27f99f..0d06ab5fec 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.39.5