aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/ripe-to-csv.awk2
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";
}