2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-03 16:15:27 +00:00

fixed a typo in a comment, expanded another

This commit is contained in:
Andreas Gustafsson
2000-09-29 23:53:05 +00:00
parent 10e1788f9f
commit f20c9d340a

View File

@@ -16,7 +16,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: adb.c,v 1.151 2000/09/26 22:28:55 explorer Exp $ */ /* $Id: adb.c,v 1.152 2000/09/29 23:53:05 gson Exp $ */
/* /*
* Implementation notes * Implementation notes
@@ -2537,7 +2537,8 @@ dns_adb_createfind(dns_adb_t *adb, isc_task_t *task, isc_taskaction_t action,
/* /*
* Try to populate the name from the database and/or * Try to populate the name from the database and/or
* start fetches. * start fetches. First try looking for an A record
* in the database.
*/ */
if (!NAME_HAS_V4(adbname) && !NAME_FETCH_V4(adbname) if (!NAME_HAS_V4(adbname) && !NAME_FETCH_V4(adbname)
&& EXPIRE_OK(adbname->expire_v4, now) && EXPIRE_OK(adbname->expire_v4, now)
@@ -2568,7 +2569,7 @@ dns_adb_createfind(dns_adb_t *adb, isc_task_t *task, isc_taskaction_t action,
* If the name does exist but we didn't get our data, go * If the name does exist but we didn't get our data, go
* ahead and try a6. * ahead and try a6.
* *
* If the result is neigher of these, try a fetch for A. * If the result is neither of these, try a fetch for A.
*/ */
if (NXDOMAIN_RESULT(result)) if (NXDOMAIN_RESULT(result))
goto fetch; goto fetch;