net: context: Shorten too long line

The commit "net: tcp: Handle retransmitted packets from peer"
introduced over 80 character line that was missed in review.
Fixing it now.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2017-05-17 16:40:07 +03:00
commit 6c60603a9f

View file

@ -842,7 +842,8 @@ NET_CONN_CB(tcp_established)
return NET_DROP;
}
if (net_tcp_seq_cmp(sys_get_be32(NET_TCP_HDR(pkt)->seq), context->tcp->send_ack) < 0) {
if (net_tcp_seq_cmp(sys_get_be32(NET_TCP_HDR(pkt)->seq),
context->tcp->send_ack) < 0) {
/* Peer sent us packet we've already seen. Apparently,
* our ack was lost.
*/