aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-10-03 15:58:09 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-10-03 15:58:09 +0000
commit974a35da68f3c9c8e64d64b3c3cc7e58eeb28513 (patch)
treec5c864aea607c651e656646418dde4124c81c1f5
parent56392994c792423080948f086ac01a95670173f8 (diff)
downloadpfsense-packages-974a35da68f3c9c8e64d64b3c3cc7e58eeb28513.tar.gz
pfsense-packages-974a35da68f3c9c8e64d64b3c3cc7e58eeb28513.tar.bz2
pfsense-packages-974a35da68f3c9c8e64d64b3c3cc7e58eeb28513.zip
Woops, thats a variable, so it requires a $
-rw-r--r--packages/snort/snort.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/snort/snort.inc b/packages/snort/snort.inc
index 08ae54bc..284f7df4 100644
--- a/packages/snort/snort.inc
+++ b/packages/snort/snort.inc
@@ -188,7 +188,7 @@ function generate_snort_conf() {
/* foreach through whitelist, writing out to file */
$whitelist_split = split("\n", $whitelist_home_net);
- foreach(whitelist_split as $wl)
+ foreach($whitelist_split as $wl)
if(trim($wl))
fwrite($whitelist, trim($wl) . "\n");