diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-07-10 19:30:56 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-07-10 19:30:56 -0400 |
commit | 6df4fc24f66bbfc9edef0ec3303b518b2eb12e61 (patch) | |
tree | 46d476f1a9a9ec80e8c12da424ce14b3ebf6de77 /config | |
parent | 72c905dcddc42e02ec9bea15605d95f89ff5037d (diff) | |
download | pfsense-packages-6df4fc24f66bbfc9edef0ec3303b518b2eb12e61.tar.gz pfsense-packages-6df4fc24f66bbfc9edef0ec3303b518b2eb12e61.tar.bz2 pfsense-packages-6df4fc24f66bbfc9edef0ec3303b518b2eb12e61.zip |
Unbreak snort on 2.0 since shuffling of includes functions
Diffstat (limited to 'config')
-rwxr-xr-x | config/snort/snort.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index 025eac74..ccd80759 100755 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -27,8 +27,12 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ + require_once("pfsense-utils.inc"); +// Needed on 2.0 because of get_vpns_list() +require_once("filter.inc"); + /* Allow additional execution time 0 = no limit. */ ini_set('max_execution_time', '9999'); ini_set('max_input_time', '9999'); |