Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2aaab9a0 authored by Adam Langley's avatar Adam Langley Committed by David S. Miller
Browse files

tcp: (whitespace only) fix confusing indentation



The indentation in part of tcp_minisocks makes it look like one of the if
statements is much more important than it actually is.

Signed-off-by: default avatarAdam Langley <agl@imperialviolet.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 827ebd64
Loading
Loading
Loading
Loading
+68 −70
Original line number Diff line number Diff line
@@ -653,8 +653,7 @@ struct sock *tcp_check_req(struct sock *sk,struct sk_buff *skb,
	 * ESTABLISHED STATE. If it will be dropped after
	 * socket is created, wait for troubles.
	 */
		child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb,
								 req, NULL);
	child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL);
	if (child == NULL)
		goto listen_overflow;
#ifdef CONFIG_TCP_MD5SIG
@@ -674,8 +673,7 @@ struct sock *tcp_check_req(struct sock *sk,struct sk_buff *skb,
			if (newkey) {
				if (!tcp_alloc_md5sig_pool())
					BUG();
					tp->af_specific->md5_add(child, child,
								 newkey,
				tp->af_specific->md5_add(child, child, newkey,
							 key->keylen);
			}
		}