diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-10-03 15:58:09 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-10-03 15:58:09 +0000 |
commit | 974a35da68f3c9c8e64d64b3c3cc7e58eeb28513 (patch) | |
tree | c5c864aea607c651e656646418dde4124c81c1f5 /packages | |
parent | 56392994c792423080948f086ac01a95670173f8 (diff) | |
download | pfsense-packages-974a35da68f3c9c8e64d64b3c3cc7e58eeb28513.tar.gz pfsense-packages-974a35da68f3c9c8e64d64b3c3cc7e58eeb28513.tar.bz2 pfsense-packages-974a35da68f3c9c8e64d64b3c3cc7e58eeb28513.zip |
Woops, thats a variable, so it requires a $
Diffstat (limited to 'packages')
-rw-r--r-- | packages/snort/snort.inc | 2 |
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"); |