From 7234111aaac38d620a4e5356d212fa51e2591d8b Mon Sep 17 00:00:00 2001 From: bmeeks8 Date: Tue, 7 Jan 2014 20:19:58 -0500 Subject: Fix typo in get_interface_gateway_v6() function name --- config/snort/snort.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config') 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; } -- cgit v1.2.3