diff options
-rwxr-xr-x | config/snort/snort.inc | 4 |
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; } |