From: Stefan Schantl Date: Sat, 13 Jun 2020 17:10:15 +0000 (+0200) Subject: firewall-lib.pl: Fix typo. X-Git-Tag: v2.25-core148~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=18c9fd28208db8b69f66e6e767a6e6ab964e0f5c;p=ipfire-2.x.git firewall-lib.pl: Fix typo. Signed-off-by: Stefan Schantl --- diff --git a/config/firewall/firewall-lib.pl b/config/firewall/firewall-lib.pl index 1aecefd421..bc0b30ca5c 100644 --- a/config/firewall/firewall-lib.pl +++ b/config/firewall/firewall-lib.pl @@ -323,7 +323,7 @@ sub get_addresses } }elsif ($addr_type ~~ ["cust_location_src", "cust_location_tgt"] && $value =~ "group:") { $value=substr($value,6); - foreach my $grp (sort {$a <=> $b} keys %customlocationpgrp) { + foreach my $grp (sort {$a <=> $b} keys %customlocationgrp) { if ($customlocationgrp{$grp}[0] eq $value) { my @address = &get_address($addr_type, $customlocationgrp{$grp}[2], $type);