+3018. [bug] Named failed to check for the "none;" acl when deciding
+ if a zone may need to be re-signed. RT #23120]
+
--- 9.8.0rc1 released ---
3017. [doc] dnssec-keyfromlabel -I was not properly documented.
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zone.c,v 1.582.8.1 2011/02/03 00:20:51 each Exp $ */
+/* $Id: zone.c,v 1.582.8.2 2011/02/07 00:14:30 marka Exp $ */
/*! \file */
if (DNS_ZONE_OPTION(zone, DNS_ZONEOPT_CHECKWILDCARD))
options |= DNS_MASTER_CHECKWILDCARD;
if (zone->type == dns_zone_master &&
- (zone->update_acl != NULL || zone->ssutable != NULL))
+ ((zone->update_acl != NULL && !dns_acl_isnone(zone->update_acl)) ||
+ zone->ssutable != NULL))
options |= DNS_MASTER_RESIGN;
return (options);
}