]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
developer: bwelling
authorMark Andrews <marka@isc.org>
Thu, 29 Aug 2002 05:40:07 +0000 (05:40 +0000)
committerMark Andrews <marka@isc.org>
Thu, 29 Aug 2002 05:40:07 +0000 (05:40 +0000)
reviewed: marka
1369.   [bug]           Adding an NS record as the lexicographically last
                        record in a secure zone didn't work.

CHANGES
bin/named/update.c

diff --git a/CHANGES b/CHANGES
index 647d0cd485285ccd4c4f1eb448c6b4b386f71456..32e7779781739fd46bd8acd442993dc3739368f1 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1369.  [bug]           Adding an NS record as the lexicographically last
+                       record in a secure zone didn't work.
+
 1368.  [func]          remove support for bitstring labels.
 
 1367.  [func]          Use response times to select forwarders.
index c2d892594edc915ca99fa731d2dfed2580827f6d..43cc468eac111222ebf93032ea872830ef97f76e 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: update.c,v 1.100 2002/06/12 06:29:43 marka Exp $ */
+/* $Id: update.c,v 1.101 2002/08/29 05:40:07 marka Exp $ */
 
 #include <config.h>
 
@@ -1294,6 +1294,8 @@ namelist_append_subdomain(dns_db_t *db, dns_name_t *name, dns_diff_t *affected)
                        break;
                CHECK(namelist_append_name(affected, child));
        }
+       if (result == ISC_R_NOMORE)
+               result = ISC_R_SUCCESS;
  failure:
        if (dbit != NULL)
                dns_dbiterator_destroy(&dbit);