diff options
author | Joe Perches <joe@perches.com> | 2011-07-01 05:43:07 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-01 19:11:16 -0400 |
commit | 4500ebf8d1cc749e1b438136745127e437c54002 (patch) | |
tree | 9a94dccd7da67ee77cddb43dc0998b50b339f0ac /net/ipv4/route.c | |
parent | 181b1e9ce1b9e705d4cd27b542ce05bc43abdab0 (diff) |
ipv4: Reduce switch/case indent
Make the case labels the same indent as the switch.
git diff -w shows no difference.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r-- | net/ipv4/route.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index f24c3359e5d0..a8ccd9bca09c 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
@@ -1439,20 +1439,20 @@ static int ip_error(struct sk_buff *skb) | |||
1439 | int code; | 1439 | int code; |
1440 | 1440 | ||
1441 | switch (rt->dst.error) { | 1441 | switch (rt->dst.error) { |
1442 | case EINVAL: | 1442 | case EINVAL: |
1443 | default: | 1443 | default: |
1444 | goto out; | 1444 | goto out; |
1445 | case EHOSTUNREACH: | 1445 | case EHOSTUNREACH: |
1446 | code = ICMP_HOST_UNREACH; | 1446 | code = ICMP_HOST_UNREACH; |
1447 | break; | 1447 | break; |
1448 | case ENETUNREACH: | 1448 | case ENETUNREACH: |
1449 | code = ICMP_NET_UNREACH; | 1449 | code = ICMP_NET_UNREACH; |
1450 | IP_INC_STATS_BH(dev_net(rt->dst.dev), | 1450 | IP_INC_STATS_BH(dev_net(rt->dst.dev), |
1451 | IPSTATS_MIB_INNOROUTES); | 1451 | IPSTATS_MIB_INNOROUTES); |
1452 | break; | 1452 | break; |
1453 | case EACCES: | 1453 | case EACCES: |
1454 | code = ICMP_PKT_FILTERED; | 1454 | code = ICMP_PKT_FILTERED; |
1455 | break; | 1455 | break; |
1456 | } | 1456 | } |
1457 | 1457 | ||
1458 | if (!rt->peer) | 1458 | if (!rt->peer) |