Should I open a PR or is this the correct way to get a review for firewall3?
Thanks > On May 1, 2020, at 1:21 PM, Philip Prindeville > <[email protected]> wrote: > > From: Philip Prindeville <[email protected]> > > If the start_time > stop_time on a rule, then the --contiguous arg > should be included in the rule. > > Signed-off-by: Philip Prindeville <[email protected]> > --- > iptables.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/iptables.c b/iptables.c > index > 559fe7defef3be85c4eb2934884caf549f932bc5..5c02e6e26c93468f4ef6a7f917069bb49985aad8 > 100644 > --- a/iptables.c > +++ b/iptables.c > @@ -1099,6 +1099,9 @@ fw3_ipt_rule_time(struct fw3_ipt_rule *r, struct > fw3_time *time) > fw3_ipt_rule_addarg(r, false, "--timestop", buf); > } > > + if (time->timestart && time->timestop && time->timestart > > time->timestop) > + fw3_ipt_rule_addarg(r, false, "--contiguous", NULL); > + > if (time->monthdays & 0xFFFFFFFE) > { > for (i = 1, p = buf; i < 32; i++) _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
