1962. [bug] Named failed to clear old update-policy when it

was removed. [RT #15491]
This commit is contained in:
Mark Andrews
2006-01-05 03:38:39 +00:00
parent d5a86dad2e
commit 78bcd2feb1
2 changed files with 7 additions and 2 deletions
+3
View File
@@ -1,3 +1,6 @@
1962. [bug] Named failed to clear old update-policy when it
was removed. [RT #15491]
1961. [bug] Check the port and address of responses forwarded
to dispatch. [RT #15474]
+4 -2
View File
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zoneconf.c,v 1.87.2.4.10.17 2006/01/04 23:50:19 marka Exp $ */
/* $Id: zoneconf.c,v 1.87.2.4.10.18 2006/01/05 03:38:39 marka Exp $ */
#include <config.h>
@@ -106,8 +106,10 @@ configure_zone_ssutable(cfg_obj_t *zconfig, dns_zone_t *zone) {
isc_result_t result;
(void)cfg_map_get(zconfig, "update-policy", &updatepolicy);
if (updatepolicy == NULL)
if (updatepolicy == NULL) {
dns_zone_setssutable(zone, NULL);
return (ISC_R_SUCCESS);
}
result = dns_ssutable_create(mctx, &table);
if (result != ISC_R_SUCCESS)