diff options
author | Joe Perches <joe@perches.com> | 2011-07-01 09:43:11 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-01 16:11:16 -0700 |
commit | 7fd71b1e0787d4d32c6225ca59e23e522cd67cc3 (patch) | |
tree | 4668b677bfc6f1519ba1e02361c0ccdaa9ccd3e2 /net/sctp/socket.c | |
parent | c485538901e0334a3016241bf73b864216ff2e73 (diff) | |
download | kernel_goldelico_gta04-7fd71b1e0787d4d32c6225ca59e23e522cd67cc3.zip kernel_goldelico_gta04-7fd71b1e0787d4d32c6225ca59e23e522cd67cc3.tar.gz kernel_goldelico_gta04-7fd71b1e0787d4d32c6225ca59e23e522cd67cc3.tar.bz2 |
sctp: Reduce switch/case indent
Make the case labels the same indent as the switch.
git diff -w shows useless break;s removed after returns
and a comment added to an unnecessary default: break;
because of a dubious gcc warning.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/socket.c')
-rw-r--r-- | net/sctp/socket.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index fd31b36..1c6aec1 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -3257,11 +3257,11 @@ static int sctp_setsockopt_auth_chunk(struct sock *sk, return -EFAULT; switch (val.sauth_chunk) { - case SCTP_CID_INIT: - case SCTP_CID_INIT_ACK: - case SCTP_CID_SHUTDOWN_COMPLETE: - case SCTP_CID_AUTH: - return -EINVAL; + case SCTP_CID_INIT: + case SCTP_CID_INIT_ACK: + case SCTP_CID_SHUTDOWN_COMPLETE: + case SCTP_CID_AUTH: + return -EINVAL; } /* add this chunk id to the endpoint */ |