Skip to content
Commit 61eb9003 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

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: default avatarJoe Perches <joe@perches.com>
Improved-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1f6afc81
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment