From dfaf64c3b7f99c313b4b21e4189768ef5a69581a Mon Sep 17 00:00:00 2001 From: Sven Putteneers Date: Fri, 15 Jul 2022 11:48:00 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20"Smartmatch=20is=20experimental=20at=20?= =?UTF-8?q?=E2=80=A6"=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added the "no warnings" pragma to suppress warnings about smartmatch being an experimental feature. --- mib2zabbix.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/mib2zabbix.pl b/mib2zabbix.pl index d3f5233..f3c7d2c 100755 --- a/mib2zabbix.pl +++ b/mib2zabbix.pl @@ -75,6 +75,7 @@ http://www.webnms.com/snmp/help/snmpapi/snmpv3/table_handling/snmptables_basics. use strict; #use warnings; +no warnings 'experimental::smartmatch'; use Cwd 'abs_path'; use Data::Dumper;