diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-10-16 20:22:22 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-10-16 20:22:22 -0400 |
commit | 716c1e70b3fd7c1a9bae1dae2dbb975e140851d0 (patch) | |
tree | 00b3e887fa0e7b214e0505d2e043ac948e690b7b /config | |
parent | 2b4295f49ddd4966885ad25e74732148ba2a7a2e (diff) | |
download | pfsense-packages-716c1e70b3fd7c1a9bae1dae2dbb975e140851d0.tar.gz pfsense-packages-716c1e70b3fd7c1a9bae1dae2dbb975e140851d0.tar.bz2 pfsense-packages-716c1e70b3fd7c1a9bae1dae2dbb975e140851d0.zip |
Fix typo in variable name.
Diffstat (limited to 'config')
-rwxr-xr-x | config/snort/snort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index b2a6c376..3a384dee 100755 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -406,7 +406,7 @@ function snort_build_list($snortcfg, $listname = "", $whitelist = false, $extern $home_net[] = $snortip; } - if (($$externallist && $localnet == 'yes') || (!$externallist && (!$whitelist || $localnet == 'yes' || empty($localnet)))) { + if (($externallist && $localnet == 'yes') || (!$externallist && (!$whitelist || $localnet == 'yes' || empty($localnet)))) { /*************************************************************************/ /* Iterate through the interface list and write out whitelist items and */ /* also compile a HOME_NET list of all the local interfaces for snort. */ |