diff options
author | Rob Austein <sra@hactrn.net> | 2010-11-18 10:08:52 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-11-18 10:08:52 +0000 |
commit | 36edfc2121960ef27cbc75508fa857aa0a0ef542 (patch) | |
tree | bc505b84551d4859c5723726f2296f3a45a65c49 /scripts | |
parent | 0e545af00064860f9ecf0122d063176f4a0fb3c9 (diff) |
Ruideger says I do not want plain "ASSIGNED", only "ASSIGNED P[IA]"
svn path=/scripts/ripe-to-csv.awk; revision=3556
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ripe-to-csv.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ripe-to-csv.awk b/scripts/ripe-to-csv.awk index a7073c38..5325574f 100644 --- a/scripts/ripe-to-csv.awk +++ b/scripts/ripe-to-csv.awk @@ -119,6 +119,6 @@ function do_asn() { # Handle an INETNUM or INET6NUM block: check for the status values we # care about, use NETNAME as the handle. function do_prefix() { - if (tags["STATUS"] ~ /^ASSIGNED(P[AI])?$/ && tags["NETNAME"] && tags[tag]) + if (tags["STATUS"] ~ /^ASSIGNED(P[AI])$/ && tags["NETNAME"] && tags[tag]) print tags["NETNAME"], tags[tag] >"prefixes.csv"; } |