Skip to content

Commit

Permalink
tcp: Make use of before macro in tcp_input.c
Browse files Browse the repository at this point in the history
Make use of tcp before macro.

Signed-off-by: Arnd Hannemann <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Arnd Hannemann authored and davem330 committed Apr 21, 2008
1 parent 02651d2 commit d7ee147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/tcp_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -2298,7 +2298,7 @@ static inline int tcp_packet_delayed(struct tcp_sock *tp)
{
return !tp->retrans_stamp ||
(tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
(__s32)(tp->rx_opt.rcv_tsecr - tp->retrans_stamp) < 0);
before(tp->rx_opt.rcv_tsecr, tp->retrans_stamp));
}

/* Undo procedures. */
Expand Down

0 comments on commit d7ee147

Please sign in to comment.