summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e1d4681)
raw | patch | inline | side by side (parent: e1d4681)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sun, 7 Aug 2016 11:35:53 +0000 (13:35 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sun, 7 Aug 2016 11:35:53 +0000 (13:35 +0200) |
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_apl: return ("APL");
Apparently Apple forgot to add some record types
when they bumped the version number of /usr/include/arpa/nameser.h
src/utils_dns.c | patch | blob | history |
diff --git a/src/utils_dns.c b/src/utils_dns.c
index e0b8452f4331f5f32b383f05c15ca90d6206f112..f38a7bd1995d212f458d57136a52ac2edfa73d5d 100644 (file)
--- a/src/utils_dns.c
+++ b/src/utils_dns.c
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");