From: Alexander Marx Date: Tue, 7 Nov 2017 14:10:06 +0000 (+0100) Subject: BUG11466: fix routing.cgi the function call in routing.cgi was fixed to call the... X-Git-Tag: v2.19-core117~1^2~86 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=51141b150d5fd2a51ae75f32fe23ce2eb79558e6;ds=sidebyside BUG11466: fix routing.cgi the function call in routing.cgi was fixed to call the new "exact" function. Signed-off-by: Michael Tremer --- diff --git a/html/cgi-bin/routing.cgi b/html/cgi-bin/routing.cgi index 15989bd27d..f2014e2e12 100644 --- a/html/cgi-bin/routing.cgi +++ b/html/cgi-bin/routing.cgi @@ -154,7 +154,7 @@ if ($settings{'ACTION'} eq $Lang::tr{'add'}) { last; } #Is the network part of an internal network? - $errormessage .= &General::check_net_internal($settings{'IP'}); + $errormessage .= &General::check_net_internal_exact($settings{'IP'}); last; }