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

fix incorrect REQUIRE

This commit is contained in:
Bob Halley
1999-10-27 20:48:06 +00:00
parent 904a34b853
commit 12bf2c63ea

View File

@@ -142,7 +142,7 @@ dns_a6_init(dns_a6context_t *a6ctx, dns_findfunc_t find, dns_rrsetfunc_t rrset,
dns_in6addrfunc_t address, dns_a6missingfunc_t missing, void *arg)
{
REQUIRE(a6ctx != NULL);
REQUIRE(a6ctx->find != NULL);
REQUIRE(find != NULL);
a6ctx->magic = A6CONTEXT_MAGIC;
a6ctx->find = find;