utils_dns.c:759:11: error: use of undeclared identifier 'ns_t_apl'
case ns_t_apl: return ("APL");
Apparently Apple forgot to add some record types
when they bumped the version number of /usr/include/arpa/nameser.h
case ns_t_a6: return ("A6");
case ns_t_dname: return ("DNAME");
case ns_t_sink: return ("SINK");
- case ns_t_apl: return ("APL");
case ns_t_tsig: return ("TSIG");
# endif
# if __NAMESER >= 20090302
+ case ns_t_apl: return ("APL");
case ns_t_ds: return ("DS");
case ns_t_sshfp: return ("SSHFP");
case ns_t_ipseckey: return ("IPSECKEY");