diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-14 12:54:40 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 12:54:40 -0400 | 
| commit | e553b498f1e691800fd1bd94621350df941f9b44 (patch) | |
| tree | f3ad6501b34fa3e58ced4cad357aeb9c09599eeb /ospf6d/ospf6_message.c | |
| parent | 9b42781b5de1c5053233666ac7d5d9e553a9f81e (diff) | |
| parent | 33cef919327fe03dbce53a422caccecb3f09faca (diff) | |
Merge pull request #820 from opensourcerouting/gcc7
fix new warnings emitted by GCC 7
Diffstat (limited to 'ospf6d/ospf6_message.c')
| -rw-r--r-- | ospf6d/ospf6_message.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_message.c b/ospf6d/ospf6_message.c index fb226072fb..583ba2a022 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 */  | 
