2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 15:05:23 +00:00

added /*FALLTHROUGH*/ comments where appropriate

This commit is contained in:
Andreas Gustafsson
2000-05-26 18:18:12 +00:00
parent 115635379a
commit 396dba6250

View File

@@ -15,7 +15,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: zone.c,v 1.129 2000/05/25 21:13:37 gson Exp $ */ /* $Id: zone.c,v 1.130 2000/05/26 18:18:12 gson Exp $ */
#include <config.h> #include <config.h>
@@ -2388,6 +2388,7 @@ zone_settimer(dns_zone_t *zone, isc_stdtime_t now) {
case dns_zone_slave: case dns_zone_slave:
if (DNS_ZONE_FLAG(zone, DNS_ZONE_F_NEEDNOTIFY)) if (DNS_ZONE_FLAG(zone, DNS_ZONE_F_NEEDNOTIFY))
next = now; next = now;
/*FALLTHROUGH*/
case dns_zone_stub: case dns_zone_stub:
if (!DNS_ZONE_FLAG(zone, DNS_ZONE_F_REFRESH) && if (!DNS_ZONE_FLAG(zone, DNS_ZONE_F_REFRESH) &&
!DNS_ZONE_FLAG(zone, DNS_ZONE_F_NOMASTERS) && !DNS_ZONE_FLAG(zone, DNS_ZONE_F_NOMASTERS) &&
@@ -3204,6 +3205,7 @@ zone_xfrdone(dns_zone_t *zone, isc_result_t result) {
switch (result) { switch (result) {
case ISC_R_SUCCESS: case ISC_R_SUCCESS:
zone->flags |= DNS_ZONE_F_NEEDNOTIFY; zone->flags |= DNS_ZONE_F_NEEDNOTIFY;
/*FALLTHROUGH*/
case DNS_R_UPTODATE: case DNS_R_UPTODATE:
/* /*
* This is not neccessary if we just performed a AXFR * This is not neccessary if we just performed a AXFR