2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-03 08:05:21 +00:00

xfrin_test now takes a view, not a dbtable

This commit is contained in:
Andreas Gustafsson
1999-08-25 06:46:01 +00:00
parent 35260b8413
commit b59d3a39f9
3 changed files with 3 additions and 3 deletions

View File

@@ -463,7 +463,7 @@ client_request(isc_task_t *task, isc_event_t *event) {
break; break;
case dns_opcode_notify: case dns_opcode_notify:
CTRACE("notify"); CTRACE("notify");
xfrin_test(client->view->dbtable); /* XXX for testing only */ xfrin_test(client->view); /* XXX for testing only */
ns_client_next(client, DNS_R_SUCCESS); ns_client_next(client, DNS_R_SUCCESS);
break; break;
case dns_opcode_iquery: case dns_opcode_iquery:

View File

@@ -34,6 +34,6 @@
/* XXX for testing only */ /* XXX for testing only */
void xfrin_test(dns_dbtable_t *dbtable); void xfrin_test(dns_view_t *view);
#endif /* NS_XFRIN_H */ #endif /* NS_XFRIN_H */

View File

@@ -34,6 +34,6 @@
/* XXX for testing only */ /* XXX for testing only */
void xfrin_test(dns_dbtable_t *dbtable); void xfrin_test(dns_view_t *view);
#endif /* NS_XFRIN_H */ #endif /* NS_XFRIN_H */