diff options
author | Julia Lawall <julia@diku.dk> | 2010-08-05 06:29:38 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-17 00:06:30 -0400 |
commit | bb8a10bbd10a45db0eb45bac520489bdbc0917ef (patch) | |
tree | f489756f44d1666d60bd4d7779de409b7d8d83cc /net/decnet | |
parent | f7df0b8d924ad2f39852ea397d39a51fbb955212 (diff) |
net/decnet: Adjust confusing if indentation
Indent the branch of an if.
The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@r disable braces4@
position p1,p2;
statement S1,S2;
@@
(
if (...) { ... }
|
if (...) S1@p1 S2@p2
)
@script:python@
p1 << r.p1;
p2 << r.p2;
@@
if (p1[0].column == p2[0].column):
cocci.print_main("branch",p1)
cocci.print_secs("after",p2)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/decnet')
-rw-r--r-- | net/decnet/dn_nsp_out.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/decnet/dn_nsp_out.c b/net/decnet/dn_nsp_out.c index baeb1eaf011b..2ef115277bea 100644 --- a/net/decnet/dn_nsp_out.c +++ b/net/decnet/dn_nsp_out.c | |||
@@ -693,22 +693,22 @@ void dn_nsp_send_conninit(struct sock *sk, unsigned char msgflg) | |||
693 | aux = scp->accessdata.acc_userl; | 693 | aux = scp->accessdata.acc_userl; |
694 | *skb_put(skb, 1) = aux; | 694 | *skb_put(skb, 1) = aux; |
695 | if (aux > 0) | 695 | if (aux > 0) |
696 | memcpy(skb_put(skb, aux), scp->accessdata.acc_user, aux); | 696 | memcpy(skb_put(skb, aux), scp->accessdata.acc_user, aux); |
697 | 697 | ||
698 | aux = scp->accessdata.acc_passl; | 698 | aux = scp->accessdata.acc_passl; |
699 | *skb_put(skb, 1) = aux; | 699 | *skb_put(skb, 1) = aux; |
700 | if (aux > 0) | 700 | if (aux > 0) |
701 | memcpy(skb_put(skb, aux), scp->accessdata.acc_pass, aux); | 701 | memcpy(skb_put(skb, aux), scp->accessdata.acc_pass, aux); |
702 | 702 | ||
703 | aux = scp->accessdata.acc_accl; | 703 | aux = scp->accessdata.acc_accl; |
704 | *skb_put(skb, 1) = aux; | 704 | *skb_put(skb, 1) = aux; |
705 | if (aux > 0) | 705 | if (aux > 0) |
706 | memcpy(skb_put(skb, aux), scp->accessdata.acc_acc, aux); | 706 | memcpy(skb_put(skb, aux), scp->accessdata.acc_acc, aux); |
707 | 707 | ||
708 | aux = (__u8)le16_to_cpu(scp->conndata_out.opt_optl); | 708 | aux = (__u8)le16_to_cpu(scp->conndata_out.opt_optl); |
709 | *skb_put(skb, 1) = aux; | 709 | *skb_put(skb, 1) = aux; |
710 | if (aux > 0) | 710 | if (aux > 0) |
711 | memcpy(skb_put(skb,aux), scp->conndata_out.opt_data, aux); | 711 | memcpy(skb_put(skb, aux), scp->conndata_out.opt_data, aux); |
712 | 712 | ||
713 | scp->persist = dn_nsp_persist(sk); | 713 | scp->persist = dn_nsp_persist(sk); |
714 | scp->persist_fxn = dn_nsp_retrans_conninit; | 714 | scp->persist_fxn = dn_nsp_retrans_conninit; |