diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2022-03-17 20:47:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 20:47:04 +0000 |
commit | 04517756f52011a68fe00dad52c2cfee5a24f8a0 (patch) | |
tree | eeecccb3d700e89cd14fb0d24a3427311d60cb42 | |
parent | 5d9919bd7ff4e3f02796a46f165e32d2068a5c0c (diff) | |
parent | cbe0e0403269b28b1e9631e56b3830ddbae8af66 (diff) | |
download | rspamd-04517756f52011a68fe00dad52c2cfee5a24f8a0.tar.gz rspamd-04517756f52011a68fe00dad52c2cfee5a24f8a0.zip |
Merge pull request #4113 from PHPGangsta/patch-2
Small fix in a comment
-rw-r--r-- | utils/asn.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/asn.pl b/utils/asn.pl index 3099c1f78..4d54bad0c 100644 --- a/utils/asn.pl +++ b/utils/asn.pl @@ -210,7 +210,7 @@ if ($v4) { my $country = $as_info->{$asn}{'country'} || $unknown_placeholder; my $rir = $as_info->{$asn}{'rir'} || $unknown_placeholder; - # "15169|8.8.8.0/24|US|arin|" for 8.8.8.8 + # "8.8.8.0/24 15169|8.8.8.0/24|US|arin|" for 8.8.8.8 printf $v4_fh "%s %s|%s|%s|%s|\n", $net, $asn, $net, $country, $rir; } @@ -328,4 +328,4 @@ B<asn.pl> is intended to download ASN data and GeoIP data and create a rbldnsd z =cut -# vim: et:ts=4:sw=4
\ No newline at end of file +# vim: et:ts=4:sw=4 |