etc/protocols - sync with NetBSD-8
[minix.git] / external / public-domain / tz / dist / checklinks.awk
blobf57f736d5baffaf1ce7754239d90b215845e9d69
1 # Check links in tz tables.
3 # Contributed by Paul Eggert.
5 /^Link/ { used[$2] = 1 }
6 /^Zone/ { defined[$2] = 1 }
8 END {
9 status = 0
11 for (tz in used) {
12 if (!defined[tz]) {
13 printf "%s: Link to non-zone\n", tz
14 status = 1
18 exit status