From a2b3eba9f5a16e8a7042f6e2029c377db5da7e9a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 1 Mar 2014 18:23:52 +0100 Subject: [PATCH] general-functions.pl: Fix wrong perl syntax. --- config/cfgroot/general-functions.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl index 9a5e6714d..386b0479f 100644 --- a/config/cfgroot/general-functions.pl +++ b/config/cfgroot/general-functions.pl @@ -1039,7 +1039,7 @@ sub GetIcmpDescription ($) { 'SKIP', 'Photur', #40 'Experimental'); - if ($index>41) {return 'unknown'} else {return @icmp_description[$index]}; + if ($index>41) {return 'unknown'} else {return $icmp_description[$index]}; } sub GetCoreUpdateVersion() { -- 2.39.2