diff options
| author | Joe Perches <[email protected]> | 2010-05-14 10:58:26 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2010-05-18 00:44:35 +0000 |
| commit | ccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e (patch) | |
| tree | 9fd681809e588913cc312f63ae0e701f18599afc /net/ipv4/tcp_input.c | |
| parent | X25: Remove bkl in sockopts (diff) | |
| download | kernel-ccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e.tar.gz kernel-ccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e.zip | |
net: Remove unnecessary semicolons after switch statements
Also added an explicit break; to avoid
a fallthrough in net/ipv4/tcp_input.c
Signed-off-by: Joe Perches <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_input.c')
| -rw-r--r-- | net/ipv4/tcp_input.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index e82162c211bf..3e6dafcb1071 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -3845,12 +3845,13 @@ void tcp_parse_options(struct sk_buff *skb, struct tcp_options_received *opt_rx, /* 16-bit multiple */ opt_rx->cookie_plus = opsize; *hvpp = ptr; + break; default: /* ignore option */ break; - }; + } break; - }; + } ptr += opsize-2; length -= opsize; |
