From: Mark Andrews Date: Thu, 29 Aug 2002 05:40:07 +0000 (+0000) Subject: developer: bwelling X-Git-Tag: v9.2.3rc1~104^2~361 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=6b25d2f7f7a1125508f8d225a8fef94e1db83555;p=thirdparty%2Fbind9.git developer: bwelling reviewed: marka 1369. [bug] Adding an NS record as the lexicographically last record in a secure zone didn't work. --- diff --git a/CHANGES b/CHANGES index 647d0cd4852..32e77797817 100644 --- 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. diff --git a/bin/named/update.c b/bin/named/update.c index c2d892594ed..43cc468eac1 100644 --- a/bin/named/update.c +++ b/bin/named/update.c @@ -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 @@ -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);