summaryrefslogtreecommitdiff
path: root/make_servers_charset.pl
diff options
context:
space:
mode:
Diffstat (limited to 'make_servers_charset.pl')
-rwxr-xr-xmake_servers_charset.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/make_servers_charset.pl b/make_servers_charset.pl
index 8517b75..2f83a09 100755
--- a/make_servers_charset.pl
+++ b/make_servers_charset.pl
@@ -9,13 +9,13 @@ while (<>) {
s/^\s+//; s/\s+$//;
next if /^$/;
- die "format error: $_" unless
+ die "format error: $_" if not
(my ($a, $b, $c) = /^([a-z0-9.-]+)\s+([a-z0-9-]+)(?:\s+(.+))?$/);
if ($c) {
- print qq( { "$a",\t"$b",\t"$c" },\n);
+ print qq| { "$a",\t"$b",\t"$c" },\n|;
} else {
- print qq( { "$a",\t"$b",\tNULL },\n);
+ print qq| { "$a",\t"$b",\tNULL },\n|;
}
}