From 7f0b40d3e789bc28ee34f21baa10dbdce6ebc5e9 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 21 Apr 2007 22:54:05 +0000 Subject: Fix a major time based rule bug. We need to match packets *INCOMING* to the interface similar to how pf works. --- etc/inc/pfsense-utils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc/inc/pfsense-utils.inc') diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 1e3f17a..3600137 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -458,7 +458,7 @@ function tdr_create_ipfw_rule($rule, $type) { /* piece together the actual user rule */ $line .= $type . " " . $aline['prot'] . $aline['src'] . - $aline['srcport'] . $aline['dst'] . $aline['dstport'] . "via " . $aline['interface']; + $aline['srcport'] . $aline['dst'] . $aline['dstport'] . " in via " . $aline['interface']; return $line; -- cgit v1.1