800. [bug] dnssec-signzone produced incorrect statistics for
large zones. [RT #1133]
+ 799. [bug] The ADB didn't find AAAA glue in a zone unless A6
+ glue was also present.
+
--- 9.1.1 released ---
--- 9.1.1rc7 released ---
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: adb.c,v 1.162.2.3 2001/02/28 21:20:29 bwelling Exp $ */
+/* $Id: adb.c,v 1.162.2.4 2001/04/10 00:20:57 gson Exp $ */
/*
* Implementation notes
/*
* If the name doesn't exist at all, jump to the fetch
- * code.
- *
- * If the name exists but the A6 doesn't, try starting
- * an aaaa database search.
- *
- * If neither of these are true, say we want an A6 fetch
- * and perhaps we'll get lucky.
+ * code. Otherwise, we'll try AAAA.
*/
if (NXDOMAIN_RESULT(result))
goto fetch;
- else if (NXRRSET_RESULT(result))
- goto aaaa;
- else {
- wanted_fetches |= DNS_ADBFIND_INET6;
- goto fetch;
- }
- aaaa:
result = dbfind_name(adbname, now, dns_rdatatype_aaaa);
if (result == ISC_R_SUCCESS) {
DP(DEF_LEVEL,