From f9df8a5d00ad99a5ff73e4b7bf9d59a29ccbd615 Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Sat, 19 Apr 2003 06:53:51 +0000 Subject: bug 202534 - Login with unrestricted IP address fails - tries to access missing get_netaddr r=bbaetz a=myk --- Bugzilla/Auth/CGI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/Auth/CGI.pm b/Bugzilla/Auth/CGI.pm index b7c2e6c42..034013bda 100644 --- a/Bugzilla/Auth/CGI.pm +++ b/Bugzilla/Auth/CGI.pm @@ -58,7 +58,7 @@ sub login { my $ipaddr = $cgi->remote_addr; unless ($cgi->param('Bugzilla_restrictlogin') || Param('loginnetmask') == 32) { - $ipaddr = get_netaddr($ipaddr); + $ipaddr = Bugzilla::Auth::get_netaddr($ipaddr); } # The IP address is valid, at least for comparing with itself in a -- cgit v1.2.3-24-g4f1b