mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:50:00 -04:00
dns_c_logginglist_addcategory() 4th arg is isc_boolean_t, not isc_boolean_t *
This commit is contained in:
parent
e97301448d
commit
5e7e5134a9
2 changed files with 2 additions and 2 deletions
|
|
@ -267,7 +267,7 @@ isc_result_t
|
|||
dns_c_logginglist_addcategory(isc_log_t *lctx,
|
||||
dns_c_logginglist_t *list,
|
||||
dns_c_logcat_t *newcat,
|
||||
isc_boolean_t *deepcopy)
|
||||
isc_boolean_t deepcopy)
|
||||
{
|
||||
dns_c_logcat_t *newc, *tmpcat;
|
||||
isc_result_t res;
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@ isc_result_t dns_c_logginglist_addchannel(isc_log_t *lctx,
|
|||
isc_result_t dns_c_logginglist_addcategory(isc_log_t *lctx,
|
||||
dns_c_logginglist_t *list,
|
||||
dns_c_logcat_t *newcat,
|
||||
isc_boolean_t *deepcopy);
|
||||
isc_boolean_t deepcopy);
|
||||
isc_result_t dns_c_logginglist_delchannel(isc_log_t *lctx,
|
||||
dns_c_logginglist_t *list,
|
||||
const char *name);
|
||||
|
|
|
|||
Loading…
Reference in a new issue