2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 07:35:26 +00:00

more debugging output.

This commit is contained in:
Michael Graff
1999-11-01 02:57:16 +00:00
parent 80d1f35fc3
commit b5492be2c7

View File

@@ -2092,6 +2092,8 @@ dns_adb_createfind(dns_adb_t *adb, isc_task_t *task, isc_taskaction_t action,
attach_to_task = ISC_TRUE; attach_to_task = ISC_TRUE;
find->query_pending = (adbname->query_pending find->query_pending = (adbname->query_pending
& wanted_addresses); & wanted_addresses);
DP(1, "createfind: attaching find %p to adbname %p\n",
find, adbname);
} else { } else {
/* /*
* Remove the flag so the caller knows there will never * Remove the flag so the caller knows there will never
@@ -2637,7 +2639,7 @@ print_find_list(FILE *f, dns_adbname_t *name)
find = ISC_LIST_HEAD(name->finds); find = ISC_LIST_HEAD(name->finds);
while (find != NULL) { while (find != NULL) {
fprintf(f, "\t\tFind %p\n", find); dns_adb_dumpfind(find, f);
find = ISC_LIST_NEXT(find, plink); find = ISC_LIST_NEXT(find, plink);
} }
} }