mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 20:11:12 -05:00
1369. [bug] Adding an NS record as the lexicographically last
record in a secure zone didn't work.
This commit is contained in:
parent
fcba59ce21
commit
00a5c833e7
2 changed files with 6 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -20,6 +20,9 @@
|
|||
|
||||
1370. [bug] dig '+[no]recurse' was incorrectly documented.
|
||||
|
||||
1369. [bug] Adding an NS record as the lexicographically last
|
||||
record in a secure zone didn't work.
|
||||
|
||||
1366. [contrib] queryperf usage was incomplete. Add '-h' for help.
|
||||
|
||||
1333. [contrib] queryperf now reports a summary of returned
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: update.c,v 1.88.2.3 2002/02/08 03:57:15 marka Exp $ */
|
||||
/* $Id: update.c,v 1.88.2.4 2003/05/12 03:58:59 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1247,6 +1247,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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue