diff options
-rw-r--r-- | Bugzilla/Auth/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |