diff options
Diffstat (limited to 'resolv/res_debug.c')
-rw-r--r-- | resolv/res_debug.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/resolv/res_debug.c b/resolv/res_debug.c index 12059c229b..14557dd323 100644 --- a/resolv/res_debug.c +++ b/resolv/res_debug.c @@ -372,9 +372,8 @@ const struct res_sym __p_update_section_syms[] attribute_hidden = { }; /* - * Names of RR types and qtypes. Types and qtypes are the same, except - * that T_ANY is a qtype but not a type. (You can ask for records of type - * T_ANY, but you can't have any records of that type in the database.) + * Names of RR types and qtypes. The list is incomplete because its + * size is part of the ABI. */ extern const struct res_sym __p_type_syms[]; libresolv_hidden_proto (__p_type_syms) @@ -418,13 +417,13 @@ const struct res_sym __p_type_syms[] = { {ns_t_tsig, (char *) "TSIG", (char *) "transaction signature"}, {ns_t_ixfr, (char *) "IXFR", (char *) "incremental zone transfer"}, {ns_t_axfr, (char *) "AXFR", (char *) "zone transfer"}, - {ns_t_zxfr, (char *) "ZXFR", (char *) "compressed zone transfer"}, {ns_t_mailb, (char *) "MAILB", (char *) "mailbox-related data (deprecated)"}, {ns_t_maila, (char *) "MAILA", (char *) "mail agent (deprecated)"}, {ns_t_naptr, (char *) "NAPTR", (char *) "URN Naming Authority"}, {ns_t_kx, (char *) "KX", (char *) "Key Exchange"}, {ns_t_cert, (char *) "CERT", (char *) "Certificate"}, {ns_t_any, (char *) "ANY", (char *) "\"any\""}, + {0, NULL, NULL}, /* Padding to preserve ABI. */ {0, NULL, NULL} }; libresolv_hidden_data_def (__p_type_syms) |