public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] logs.cgi/showrequestfromcountry.dat: Proper lookup country code.
@ 2021-04-05 13:36 Stefan Schantl
  2021-04-05 14:50 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2021-04-05 13:36 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1057 bytes --]

Seems to be a code fragment has been left while switching to
libloc. Now call the right function from location-functions.pl.

Fixes #12599.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 html/cgi-bin/logs.cgi/showrequestfromcountry.dat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/html/cgi-bin/logs.cgi/showrequestfromcountry.dat b/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
index 2a246ec60..f81994f87 100644
--- a/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
+++ b/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
@@ -218,7 +218,7 @@ if ($multifile) {
 				# extract ipv4 and ipv6 address
 				elsif (($_ =~ /SRC\=(([\d]{1,3})(\.([\d]{1,3})){3})/) or ($_ =~ /SRC\=(([0-9a-fA-F]{0,4})(\:([0-9a-fA-F]{0,4})){2,7})/)) {
 					my $srcaddr=$1;
-					my $ccode = $gi->country_code_by_name($srcaddr);
+					my $ccode = &Location::Functions::lookup_country_code($srcaddr);
 					if($ccode eq uc($country)){
 						# or srcaddr matches country code
 						$log[$lines] = $_;
-- 
2.20.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] logs.cgi/showrequestfromcountry.dat: Proper lookup country code.
  2021-04-05 13:36 [PATCH] logs.cgi/showrequestfromcountry.dat: Proper lookup country code Stefan Schantl
@ 2021-04-05 14:50 ` Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2021-04-05 14:50 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1151 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> Seems to be a code fragment has been left while switching to
> libloc. Now call the right function from location-functions.pl.
> 
> Fixes #12599.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>  html/cgi-bin/logs.cgi/showrequestfromcountry.dat | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/html/cgi-bin/logs.cgi/showrequestfromcountry.dat b/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
> index 2a246ec60..f81994f87 100644
> --- a/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
> +++ b/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
> @@ -218,7 +218,7 @@ if ($multifile) {
>  				# extract ipv4 and ipv6 address
>  				elsif (($_ =~ /SRC\=(([\d]{1,3})(\.([\d]{1,3})){3})/) or ($_ =~ /SRC\=(([0-9a-fA-F]{0,4})(\:([0-9a-fA-F]{0,4})){2,7})/)) {
>  					my $srcaddr=$1;
> -					my $ccode = $gi->country_code_by_name($srcaddr);
> +					my $ccode = &Location::Functions::lookup_country_code($srcaddr);
>  					if($ccode eq uc($country)){
>  						# or srcaddr matches country code
>  						$log[$lines] = $_;
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-05 14:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-05 13:36 [PATCH] logs.cgi/showrequestfromcountry.dat: Proper lookup country code Stefan Schantl
2021-04-05 14:50 ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox