Commit fdb8b298 authored by Pedro Tammela's avatar Pedro Tammela Committed by David S. Miller

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: default avatarPedro Tammela <pctammela@gmail.com>
Acked-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d6a4b570
......@@ -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 @@ int tcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int nonblock,
sk_eat_skb(sk, skb);
continue;
found_fin_ok:
found_fin_ok:
/* Process the FIN. */
++*seq;
if (!(flags & MSG_PEEK))
......
Markdown is supported
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