2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

0 -> dns_rdatatype_none

This commit is contained in:
Mark Andrews
2008-09-25 04:12:39 +00:00
parent 3398334b3a
commit 75a4ad0829

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: xfrin.c,v 1.165 2008/09/25 03:49:55 marka Exp $ */
/* $Id: xfrin.c,v 1.166 2008/09/25 04:12:39 marka Exp $ */
/*! \file */
@@ -433,7 +433,8 @@ xfr_rr(dns_xfrin_ctx_t *xfr, dns_name_t *name, isc_uint32_t ttl,
xfr->nrecs++;
if (rdata->type == 0 || dns_rdatatype_ismeta(rdata->type))
if (rdata->type == dns_rdatatype_none ||
dns_rdatatype_ismeta(rdata->type))
FAIL(DNS_R_FORMERR);
redo: