diff options
author | Ermal Luçi <eri@pfsense.org> | 2008-07-22 15:29:55 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2008-07-22 15:29:55 +0000 |
commit | 2b937162d1065625ecceff72c333146c0ac34be9 (patch) | |
tree | d41bd2cff0f9dcb4c2b82590617a9903e3b9c9de | |
parent | 7388172140324e50203cfd105e5b5298465bc34e (diff) | |
download | pfsense-2b937162d1065625ecceff72c333146c0ac34be9.zip pfsense-2b937162d1065625ecceff72c333146c0ac34be9.tar.gz |
Revert to previous version it was incorrectly patched.
-rw-r--r-- | etc/inc/filter.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 843ddb6..197c7c2 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -62,8 +62,7 @@ function filter_pflog_start() { mute_kernel_msgs(); $pid = 0; - if (!$g['booting']) - $pid = `ps awwwux | grep -v "grep" | grep "tcpdump -v -l -n -e -ttt -i pflog0" | awk '{ print $2 }'`; + $pid = `ps awwwux | grep -v "grep" | grep "tcpdump -v -l -n -e -ttt -i pflog0" | awk '{ print $2 }'`; if(!$pid) mwexec_bg("/usr/sbin/tcpdump -v -l -n -e -ttt -i pflog0 | logger -t pf -p local0.info"); |