mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
$Maxrec, maximum recursions, is in fact maximum object nesting. Objects may reference other objects to a maximum of 10 deep. However objects can and do nest deeper than 10. Double the maximum nesting level from 10 to 20.
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
--- ipfmeta.orig 2021-03-15 10:14:10.073225000 -0700
|
|
+++ ipfmeta 2021-03-15 10:17:37.515326000 -0700
|
|
@@ -33,7 +33,7 @@
|
|
|
|
# Globals
|
|
my $Group = 0;
|
|
-my $Maxrec = 10;
|
|
+my $Maxrec = 20;
|
|
my $Objfile = "ipf.objs";
|
|
my $Obj; my @Objs;
|
|
my $Val; my %Vals;
|