From 51141b150d5fd2a51ae75f32fe23ce2eb79558e6 Mon Sep 17 00:00:00 2001 From: Alexander Marx Date: Tue, 7 Nov 2017 15:10:06 +0100 Subject: [PATCH] BUG11466: fix routing.cgi the function call in routing.cgi was fixed to call the new "exact" function. Signed-off-by: Michael Tremer --- html/cgi-bin/routing.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2