diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-10-13 11:51:11 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-13 11:51:11 -0400 | 
| commit | 02cbd978011ca0a8afe729ac67f7c00009d5ca0d (patch) | |
| tree | a43347ff1519213c9176d5ad5515ec3468f4eaad /nhrpd/nhrp_peer.c | |
| parent | 4fa73b6572df03fd9df7ffddf279abbcf8ad6b9c (diff) | |
| parent | 7d67b9ff28d09de58c632f80ef7d330e45e698f6 (diff) | |
Merge pull request #14561 from idryzhov/implicit-fallthrough
build: add -Wimplicit-fallthrough
Diffstat (limited to 'nhrpd/nhrp_peer.c')
| -rw-r--r-- | nhrpd/nhrp_peer.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/nhrpd/nhrp_peer.c b/nhrpd/nhrp_peer.c index ef92d81436..6e7857c777 100644 --- a/nhrpd/nhrp_peer.c +++ b/nhrpd/nhrp_peer.c @@ -140,7 +140,7 @@ static void nhrp_peer_ifp_notify(struct notifier_block *n, unsigned long cmd)  					   nhrp_peer_vc_notify);  			__nhrp_peer_check(p);  		} -		/* fallthru */ /* to post config update */ +		fallthrough; /* to post config update */  	case NOTIFY_INTERFACE_ADDRESS_CHANGED:  		notifier_call(&p->notifier_list, NOTIFY_PEER_IFCONFIG_CHANGED);  		break; @@ -1051,7 +1051,7 @@ static void nhrp_peer_forward(struct nhrp_peer *p,  				 * append our selves to the transit NHS list  				 */  				goto err; -		/* fallthru */ +			fallthrough;  		case NHRP_EXTENSION_RESPONDER_ADDRESS:  			/* Supported compulsory extensions, and any  			 * non-compulsory that is not explicitly handled, @@ -1221,7 +1221,7 @@ void nhrp_peer_recv(struct nhrp_peer *p, struct zbuf *zb)  				/* FIXME: send error-indication */  			}  		} -		/* fallthru */ /* FIXME: double check, is this correct? */ +		fallthrough; /* FIXME: double check, is this correct? */  	case NHRP_ROUTE_OFF_NBMA:  		if (packet_types[hdr->type].handler) {  			packet_types[hdr->type].handler(&pp);  | 
