]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1506. [bug] Wrong return type for dns_view_isdelegationonly().
authorMark Andrews <marka@isc.org>
Wed, 17 Sep 2003 15:01:26 +0000 (15:01 +0000)
committerMark Andrews <marka@isc.org>
Wed, 17 Sep 2003 15:01:26 +0000 (15:01 +0000)
CHANGES
lib/dns/view.c

diff --git a/CHANGES b/CHANGES
index 2a1b48d7deb8bf5796b1ac89281f75bc7e49a591..cb714af8d46912311e640db4e433756f29f4fdc6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1506.  [bug]           Wrong return type for dns_view_isdelegationonly().
+
 1505.  [bug]           Uninitialized rdataset in sdb. [RT #8750]
 
 1504.  [func]          New zone type "delegation-only".
index 9b4b7d20cc0a9a57c81c1c5f2a261063bc138076..f3f236e5eeaabeca12141e7366b6eac32b2de830 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: view.c,v 1.117 2003/09/17 05:24:43 marka Exp $ */
+/* $Id: view.c,v 1.118 2003/09/17 15:01:26 marka Exp $ */
 
 #include <config.h>
 
@@ -1224,7 +1224,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;