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

2814. [func] Provide a definitive error message when a master

zone is not loaded. [RT #20757]
This commit is contained in:
Mark Andrews
2009-12-21 04:29:10 +00:00
parent 1585604c53
commit c9630524c7
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2814. [func] Provide a definitive error message when a master
zone is not loaded. [RT #20757]
2813. [bug] Better handling of unreadable DNSSEC key files.
[RT #20710]

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zone.c,v 1.543 2009/12/18 23:49:03 tbox Exp $ */
/* $Id: zone.c,v 1.544 2009/12/21 04:29:10 marka Exp $ */
/*! \file */
@@ -3634,7 +3634,8 @@ zone_postload(dns_zone_t *zone, dns_db_t *db, isc_time_t loadtime,
if (zone->task != NULL)
zone_settimer(zone, &now);
result = ISC_R_SUCCESS;
}
} else if (zone->type == dns_zone_master)
dns_zone_log(zone, ISC_LOG_ERROR, "not loaded due to errors.");
return (result);
}