Date: Mon, 15 Mar 2021 19:36:42 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568492 - in head/security/ipfmeta: . files Message-ID: <202103151936.12FJagEG012451@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Mon Mar 15 19:36:41 2021 New Revision: 568492 URL: https://svnweb.freebsd.org/changeset/ports/568492 Log: security/ipfmeta: Adjust maximum nesting level for larger rulesets $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. Added: head/security/ipfmeta/files/ head/security/ipfmeta/files/patch-ipfmeta (contents, props changed) Modified: head/security/ipfmeta/Makefile (contents, props changed) Modified: head/security/ipfmeta/Makefile ============================================================================== --- head/security/ipfmeta/Makefile Mon Mar 15 18:41:54 2021 (r568491) +++ head/security/ipfmeta/Makefile Mon Mar 15 19:36:41 2021 (r568492) @@ -3,6 +3,7 @@ PORTNAME= ipfmeta PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://cschubert.com/distfiles/ \ LOCAL/cy Added: head/security/ipfmeta/files/patch-ipfmeta ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ipfmeta/files/patch-ipfmeta Mon Mar 15 19:36:41 2021 (r568492) @@ -0,0 +1,11 @@ +--- 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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103151936.12FJagEG012451>