diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-07-11 15:36:42 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-07-11 15:44:05 +0200 |
commit | a92aee467e89473a9d07fa177794f5559f852b59 (patch) | |
tree | 45c9c2e1b990d59b3f0d92e8c1afc1030a256332 /proto/ospf/dbdes.c | |
parent | 6b72ea4c14f87b2b738341e73c09e79eb138c477 (diff) |
Avoid fallthrough warnings
Diffstat (limited to 'proto/ospf/dbdes.c')
-rw-r--r-- | proto/ospf/dbdes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c index d7d2a057..b52483b0 100644 --- a/proto/ospf/dbdes.c +++ b/proto/ospf/dbdes.c @@ -347,6 +347,7 @@ ospf_receive_dbdes(struct ospf_packet *pkt, struct ospf_iface *ifa, ospf_neigh_sm(n, INM_2WAYREC); if (n->state != NEIGHBOR_EXSTART) return; + /* fallthrough */ case NEIGHBOR_EXSTART: if ((ifa->type != OSPF_IT_VLINK) && |