diff options
author | Joe Perches <joe@perches.com> | 2013-05-24 20:36:13 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-05-26 08:22:18 +0200 |
commit | 61eb900352ff731d990d5415ce9f04e4af6a6136 (patch) | |
tree | 1e2e4e18bf6ad79e7c9b7c9ec59b736ec86468b6 /fs/ocfs2/Kconfig | |
parent | tcp: remove one indentation level in tcp_rcv_state_process() (diff) | |
download | linux-61eb900352ff731d990d5415ce9f04e4af6a6136.tar.xz linux-61eb900352ff731d990d5415ce9f04e4af6a6136.zip |
tcp: Remove another indentation level in tcp_rcv_state_process
case TCP_SYN_RECV: can have another indentation level removed
by converting
if (acceptable) {
...;
} else {
return 1;
}
to
if (!acceptable)
return 1;
...;
Reflow code and comments to fit 80 columns.
Another pure cleanup patch.
Signed-off-by: Joe Perches <joe@perches.com>
Improved-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/ocfs2/Kconfig')
0 files changed, 0 insertions, 0 deletions