diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2023-10-11 00:15:32 +0300 | 
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2023-10-12 21:23:18 +0300 | 
| commit | 7d67b9ff28d09de58c632f80ef7d330e45e698f6 (patch) | |
| tree | 16c8afc9dc80d70951f83d2f1182ace0edc7ee49 /bgpd/bgp_attr.c | |
| parent | 9bc4d9eaec92589deda092bd867054e25e64be3f (diff) | |
build: add -Wimplicit-fallthrough
Also:
- replace all /* fallthrough */ comments with portable fallthrough;
pseudo keyword to accomodate both gcc and clang
- add missing break; statements as required by older versions of gcc
- cleanup some code to remove unnecessary fallthrough
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'bgpd/bgp_attr.c')
| -rw-r--r-- | bgpd/bgp_attr.c | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/bgpd/bgp_attr.c b/bgpd/bgp_attr.c index 4014b4b92a..6925aff727 100644 --- a/bgpd/bgp_attr.c +++ b/bgpd/bgp_attr.c @@ -2323,11 +2323,8 @@ int bgp_mp_reach_parse(struct bgp_attr_parser_args *args,  				/*  				 * NOTE: intentional fall through  				 * - for consistency in rx processing -				 * -				 * The following comment is to signal GCC this intention -				 * and suppress the warning  				 */ -	/* FALLTHRU */ +		fallthrough;  	case BGP_ATTR_NHLEN_IPV4:  		stream_get(&attr->mp_nexthop_global_in, s, IPV4_MAX_BYTELEN);  		/* Probably needed for RFC 2283 */  | 
