2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

developer: bwelling

reviewed: marka
1369.   [bug]           Adding an NS record as the lexicographically last
                        record in a secure zone didn't work.
This commit is contained in:
Mark Andrews
2002-08-29 05:40:07 +00:00
parent bc9a230c5d
commit 6b25d2f7f7
2 changed files with 6 additions and 1 deletions

View File

@@ -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.

View 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);