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

The exiting test in zone_settimer was reversed. Oops.

This commit is contained in:
Brian Wellington
2000-12-05 20:02:34 +00:00
parent 985013e619
commit a7f3d1e811

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zone.c,v 1.269 2000/12/05 00:47:42 bwelling Exp $ */
/* $Id: zone.c,v 1.270 2000/12/05 20:02:34 bwelling Exp $ */
#include <config.h>
@@ -3649,7 +3649,7 @@ zone_settimer(dns_zone_t *zone, isc_stdtime_t now) {
isc_result_t result;
REQUIRE(DNS_ZONE_VALID(zone));
if (!DNS_ZONE_FLAG(zone, DNS_ZONEFLG_EXITING))
if (DNS_ZONE_FLAG(zone, DNS_ZONEFLG_EXITING))
return;
switch (zone->type) {