mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 13:38:26 +00:00
fixed a compiler warning due to prototype mismatch between doneloading()
and dns_zt_zoneloaded_t
This commit is contained in:
parent
c9c36ecb32
commit
cee9d6dc42
@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: zt.c,v 1.53 2011/09/03 19:53:15 each Exp $ */
|
/* $Id: zt.c,v 1.54 2011/09/05 03:45:22 each Exp $ */
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ freezezones(dns_zone_t *zone, void *uap);
|
|||||||
void
|
void
|
||||||
startloading(dns_zt_t *zt, dns_zone_t *zone);
|
startloading(dns_zt_t *zt, dns_zone_t *zone);
|
||||||
|
|
||||||
void
|
isc_result_t
|
||||||
doneloading(dns_zt_t *zt, dns_zone_t *zone, isc_task_t *task);
|
doneloading(dns_zt_t *zt, dns_zone_t *zone, isc_task_t *task);
|
||||||
|
|
||||||
isc_result_t
|
isc_result_t
|
||||||
@ -466,7 +466,7 @@ dns_zt_apply2(dns_zt_t *zt, isc_boolean_t stop, isc_result_t *sub,
|
|||||||
* zero, call the loaddone callback that was initially set by
|
* zero, call the loaddone callback that was initially set by
|
||||||
* dns_zt_asyncload().
|
* dns_zt_asyncload().
|
||||||
*/
|
*/
|
||||||
void
|
isc_result_t
|
||||||
doneloading(dns_zt_t *zt, dns_zone_t *zone, isc_task_t *task) {
|
doneloading(dns_zt_t *zt, dns_zone_t *zone, isc_task_t *task) {
|
||||||
dns_zt_allloaded_t alldone = NULL;
|
dns_zt_allloaded_t alldone = NULL;
|
||||||
void *arg = NULL;
|
void *arg = NULL;
|
||||||
@ -489,6 +489,8 @@ doneloading(dns_zt_t *zt, dns_zone_t *zone, isc_task_t *task) {
|
|||||||
|
|
||||||
if (alldone != NULL)
|
if (alldone != NULL)
|
||||||
alldone(arg);
|
alldone(arg);
|
||||||
|
|
||||||
|
return (ISC_R_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/***
|
/***
|
||||||
|
Loading…
x
Reference in New Issue
Block a user