+3018. [bug] Named failed to check for the "none;" acl when deciding
+ if a zone may need to be re-signed. RT #23120]
+
3017. [doc] dnssec-keyfromlabel -I was not properly documented.
[RT #22887]
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zone.c,v 1.540.2.36 2011/02/03 05:38:10 tbox Exp $ */
+/* $Id: zone.c,v 1.540.2.37 2011/02/07 00:16:48 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);
}