diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-04-20 20:09:22 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:29:24 -0400 |
commit | 3ff50b7997fe06cd5d276b229967bb52d6b3b6c1 (patch) | |
tree | 4f0f57123a945c3e6c39759456b6187bb78c4b1f /net/sctp/sm_statefuns.c | |
parent | c462238d6a6d8ee855bda10f9fff442971540ed2 (diff) |
[NET]: cleanup extra semicolons
Spring cleaning time...
There seems to be a lot of places in the network code that have
extra bogus semicolons after conditionals. Most commonly is a
bogus semicolon after: switch() { }
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sm_statefuns.c')
-rw-r--r-- | net/sctp/sm_statefuns.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index e0ec16dd678a..9e28a5d51200 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
@@ -629,7 +629,7 @@ sctp_disposition_t sctp_sf_do_5_1D_ce(const struct sctp_endpoint *ep, | |||
629 | case -SCTP_IERROR_BAD_SIG: | 629 | case -SCTP_IERROR_BAD_SIG: |
630 | default: | 630 | default: |
631 | return sctp_sf_pdiscard(ep, asoc, type, arg, commands); | 631 | return sctp_sf_pdiscard(ep, asoc, type, arg, commands); |
632 | }; | 632 | } |
633 | } | 633 | } |
634 | 634 | ||
635 | 635 | ||
@@ -1195,7 +1195,7 @@ static void sctp_tietags_populate(struct sctp_association *new_asoc, | |||
1195 | new_asoc->c.my_ttag = asoc->c.my_vtag; | 1195 | new_asoc->c.my_ttag = asoc->c.my_vtag; |
1196 | new_asoc->c.peer_ttag = asoc->c.peer_vtag; | 1196 | new_asoc->c.peer_ttag = asoc->c.peer_vtag; |
1197 | break; | 1197 | break; |
1198 | }; | 1198 | } |
1199 | 1199 | ||
1200 | /* Other parameters for the endpoint SHOULD be copied from the | 1200 | /* Other parameters for the endpoint SHOULD be copied from the |
1201 | * existing parameters of the association (e.g. number of | 1201 | * existing parameters of the association (e.g. number of |
@@ -1904,7 +1904,7 @@ sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep, | |||
1904 | case -SCTP_IERROR_BAD_SIG: | 1904 | case -SCTP_IERROR_BAD_SIG: |
1905 | default: | 1905 | default: |
1906 | return sctp_sf_pdiscard(ep, asoc, type, arg, commands); | 1906 | return sctp_sf_pdiscard(ep, asoc, type, arg, commands); |
1907 | }; | 1907 | } |
1908 | } | 1908 | } |
1909 | 1909 | ||
1910 | /* Compare the tie_tag in cookie with the verification tag of | 1910 | /* Compare the tie_tag in cookie with the verification tag of |
@@ -1936,7 +1936,7 @@ sctp_disposition_t sctp_sf_do_5_2_4_dupcook(const struct sctp_endpoint *ep, | |||
1936 | default: /* Discard packet for all others. */ | 1936 | default: /* Discard packet for all others. */ |
1937 | retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands); | 1937 | retval = sctp_sf_pdiscard(ep, asoc, type, arg, commands); |
1938 | break; | 1938 | break; |
1939 | }; | 1939 | } |
1940 | 1940 | ||
1941 | /* Delete the tempory new association. */ | 1941 | /* Delete the tempory new association. */ |
1942 | sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc)); | 1942 | sctp_add_cmd_sf(commands, SCTP_CMD_NEW_ASOC, SCTP_ASOC(new_asoc)); |
@@ -4816,7 +4816,7 @@ sctp_disposition_t sctp_sf_t2_timer_expire(const struct sctp_endpoint *ep, | |||
4816 | default: | 4816 | default: |
4817 | BUG(); | 4817 | BUG(); |
4818 | break; | 4818 | break; |
4819 | }; | 4819 | } |
4820 | 4820 | ||
4821 | if (!reply) | 4821 | if (!reply) |
4822 | goto nomem; | 4822 | goto nomem; |