From 1978585a40bb7ded803fb916cc73d7782c23df85 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 4 May 2020 14:12:13 +0200 Subject: [PATCH] fix typo: s/ICPM/ICMP/ Signed-off-by: Thomas Lamprecht --- src/PVE/Firewall.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm index 5d1a584..28dbb19 100644 --- a/src/PVE/Firewall.pm +++ b/src/PVE/Firewall.pm @@ -1082,7 +1082,7 @@ sub parse_port_name_number_or_range { } } - die "ICPM ports not allowed in port range\n" if $icmp_port && $count > 0; + die "ICMP ports not allowed in port range\n" if $icmp_port && $count > 0; # I really don't like to use the word number here, but it's the only thing # that makes sense in a literal way. The range 1:100 counts as 2, not as -- 2.39.2