mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
decnet: Reduce switch/case indent
Make the case labels the same indent as the switch. git diff -w shows differences for line wrapping. (fit multiple lines to 80 columns, join where possible) Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
4a9e4b0932
commit
06f8fe11bb
@@ -404,13 +404,13 @@ int dn_neigh_router_hello(struct sk_buff *skb)
|
||||
|
||||
dn->flags &= ~DN_NDFLAG_P3;
|
||||
|
||||
switch(msg->iinfo & DN_RT_INFO_TYPE) {
|
||||
case DN_RT_INFO_L1RT:
|
||||
dn->flags &=~DN_NDFLAG_R2;
|
||||
dn->flags |= DN_NDFLAG_R1;
|
||||
break;
|
||||
case DN_RT_INFO_L2RT:
|
||||
dn->flags |= DN_NDFLAG_R2;
|
||||
switch (msg->iinfo & DN_RT_INFO_TYPE) {
|
||||
case DN_RT_INFO_L1RT:
|
||||
dn->flags &=~DN_NDFLAG_R2;
|
||||
dn->flags |= DN_NDFLAG_R1;
|
||||
break;
|
||||
case DN_RT_INFO_L2RT:
|
||||
dn->flags |= DN_NDFLAG_R2;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user