]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
The exiting test in zone_settimer was reversed. Oops.
authorBrian Wellington <source@isc.org>
Tue, 5 Dec 2000 20:02:34 +0000 (20:02 +0000)
committerBrian Wellington <source@isc.org>
Tue, 5 Dec 2000 20:02:34 +0000 (20:02 +0000)
lib/dns/zone.c

index b9974d0cc4408af04aac4d0c752a7687081b901f..2eede437ce0fe945e95cbab6b18cc64a49f5b56b 100644 (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) {