mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-14 14:42:22 -04:00
1506. [bug] Wrong return type for dns_view_isdelegationonly().
This commit is contained in:
parent
7d7adae5ad
commit
f6566c5358
2 changed files with 4 additions and 2 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
1506. [bug] Wrong return type for dns_view_isdelegationonly().
|
||||
|
||||
--- 9.2.3rc2 released ---
|
||||
|
||||
1505. [bug] Uninitaliased rdataset is sdb. [RT #8750]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: view.c,v 1.103.2.6 2003/09/17 05:20:03 marka Exp $ */
|
||||
/* $Id: view.c,v 1.103.2.7 2003/09/18 00:56:34 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1203,7 +1203,7 @@ dns_view_adddelegationonly(dns_view_t *view, dns_name_t *name) {
|
|||
return (result);
|
||||
}
|
||||
|
||||
isc_result_t
|
||||
isc_boolean_t
|
||||
dns_view_isdelegationonly(dns_view_t *view, dns_name_t *name) {
|
||||
dns_name_t *new;
|
||||
isc_uint32_t hash;
|
||||
|
|
|
|||
Loading…
Reference in a new issue