summaryrefslogtreecommitdiff
path: root/make_tld_serv.pl
diff options
context:
space:
mode:
Diffstat (limited to 'make_tld_serv.pl')
-rwxr-xr-xmake_tld_serv.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/make_tld_serv.pl b/make_tld_serv.pl
index d2735d6..0224084 100755
--- a/make_tld_serv.pl
+++ b/make_tld_serv.pl
@@ -11,7 +11,8 @@ while (<>) {
(my ($a, $b) = /^([\w\d\.-]+)\s+([\w\d\.:-]+|[A-Z]+\s+.*)$/);
$b =~ s/^W(?:EB)?\s+/\\001/;
$b =~ s/^M(?:SG)?\s+/\\002/;
- $b = "\\003" if ($b eq 'NONE');
+ $b = "\\004" if $b eq 'CRSNIC';
+ $b = "\\003" if $b eq 'NONE';
print " \"$a\",\t\"$b\",\n";
}