summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_message.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2017-07-14 16:48:01 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2017-07-14 16:59:43 +0200
commitacd738fc7f5a8ca637e691e45346d74a149b75c9 (patch)
tree62d1445b34e13fdfab132fa31cfb0ff9145b73ae /ospf6d/ospf6_message.c
parent888efdbb5ec4e895f44f0307348a02fd6c61b579 (diff)
*: fix GCC 7 switch/case fallthrough warnings
Need a comment on these. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_message.c')
-rw-r--r--ospf6d/ospf6_message.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_message.c b/ospf6d/ospf6_message.c
index 5924afc38f..1f94fde82f 100644
--- a/ospf6d/ospf6_message.c
+++ b/ospf6d/ospf6_message.c
@@ -392,7 +392,7 @@ ospf6_dbdesc_recv_master (struct ospf6_header *oh,
return;
}
/* else fall through to ExStart */
-
+ /* fallthru */
case OSPF6_NEIGHBOR_EXSTART:
/* if neighbor obeys us as our slave, schedule negotiation_done
and process LSA Headers. Otherwise, ignore this message */
@@ -600,7 +600,7 @@ ospf6_dbdesc_recv_slave (struct ospf6_header *oh,
return;
}
/* else fall through to ExStart */
-
+ /* fallthru */
case OSPF6_NEIGHBOR_EXSTART:
/* If the neighbor is Master, act as Slave. Schedule negotiation_done
and process LSA Headers. Otherwise, ignore this message */