Skip to content

Commit fdb8b29

Browse files
tammeladavem330
authored andcommitted
tcp: fix code style in tcp_recvmsg()
2 goto labels are indented with a tab. remove the tabs and keep the code style consistent. Signed-off-by: Pedro Tammela <[email protected]> Acked-by: Eric Dumazet <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent d6a4b57 commit fdb8b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

net/ipv4/tcp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ int tcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int nonblock,
20882088
}
20892089
continue;
20902090

2091-
found_ok_skb:
2091+
found_ok_skb:
20922092
/* Ok so how much can we use? */
20932093
used = skb->len - offset;
20942094
if (len < used)
@@ -2147,7 +2147,7 @@ int tcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int nonblock,
21472147
sk_eat_skb(sk, skb);
21482148
continue;
21492149

2150-
found_fin_ok:
2150+
found_fin_ok:
21512151
/* Process the FIN. */
21522152
++*seq;
21532153
if (!(flags & MSG_PEEK))

0 commit comments

Comments
 (0)