utils_dns.c: fix build on OSX
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 7 Aug 2016 11:35:53 +0000 (13:35 +0200)
committerRuben 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

src/utils_dns.c

index e0b8452..f38a7bd 100644 (file)
@@ -756,10 +756,10 @@ const char *qtype_str(int t)
            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");