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

The zone table no longer depends on the loop manager

This reverts some of the changes in commit b171cacf4f
because now it isn't necessary to pass the loopmgr around.
This commit is contained in:
Tony Finch
2023-04-27 12:47:03 +01:00
parent 6217e434b5
commit 9882a6ef90
13 changed files with 18 additions and 29 deletions

View File

@@ -206,8 +206,7 @@ createview(isc_mem_t *mctx, dns_rdataclass_t rdclass, isc_loopmgr_t *loopmgr,
isc_result_t result;
dns_view_t *view = NULL;
result = dns_view_create(mctx, loopmgr, rdclass, DNS_CLIENTVIEW_NAME,
&view);
result = dns_view_create(mctx, rdclass, DNS_CLIENTVIEW_NAME, &view);
if (result != ISC_R_SUCCESS) {
return (result);
}