aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorbmeeks8 <bmeeks8@bellsouth.net>2014-01-07 20:19:58 -0500
committerbmeeks8 <bmeeks8@bellsouth.net>2014-01-07 20:19:58 -0500
commit7234111aaac38d620a4e5356d212fa51e2591d8b (patch)
tree3c064e26ea3c2ca961f3d80839168580ca6ca2d0 /config
parent1816cf8bc9f6cab945acd52b7e632b24834de6e3 (diff)
downloadpfsense-packages-7234111aaac38d620a4e5356d212fa51e2591d8b.tar.gz
pfsense-packages-7234111aaac38d620a4e5356d212fa51e2591d8b.tar.bz2
pfsense-packages-7234111aaac38d620a4e5356d212fa51e2591d8b.zip
Fix typo in get_interface_gateway_v6() function name
Diffstat (limited to 'config')
-rwxr-xr-xconfig/snort/snort.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc
index 79fef4fa..eda009d3 100755
--- a/config/snort/snort.inc
+++ b/config/snort/snort.inc
@@ -440,8 +440,8 @@ function snort_build_list($snortcfg, $listname = "", $whitelist = false) {
$gw = get_interface_gateway($snortcfg['interface']);
if (is_ipaddr($gw) && !in_array($gw, $home_net))
$home_net[] = $gw;
- if (function_exists("get_interface_gatewayv6")) {
- $gw = get_interface_gatewayv6($snortcfg['interface']);
+ if (function_exists("get_interface_gateway_v6")) {
+ $gw = get_interface_gateway_v6($snortcfg['interface']);
if (is_ipaddrv6($gw) && !in_array($gw, $home_net))
$home_net[] = $gw;
}