1
0
Fork 0

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 <pctammela@gmail.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Pedro Tammela 2018-12-06 10:45:28 -02:00 committed by David S. Miller
parent d6a4b570d3
commit fdb8b29867
1 changed files with 2 additions and 2 deletions

View File

@ -2088,7 +2088,7 @@ int tcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int nonblock,
}
continue;
found_ok_skb:
found_ok_skb:
/* Ok so how much can we use? */
used = skb->len - offset;
if (len < used)
@ -2147,7 +2147,7 @@ skip_copy:
sk_eat_skb(sk, skb);
continue;
found_fin_ok:
found_fin_ok:
/* Process the FIN. */
++*seq;
if (!(flags & MSG_PEEK))