From 0358cc7b162d3691aa84a06d67472c3947a7157d Mon Sep 17 00:00:00 2001 From: Sepherosa Ziehau Date: Fri, 23 Jun 2017 07:13:17 +0800 Subject: [PATCH] tcp: Fix comment, while I'm here. --- sys/netinet/tcp_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 2bffb749e6..710f606c4e 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -2921,7 +2921,7 @@ tcp_xmit_timer(struct tcpcb *tp, int rtt, tcp_seq ack) * firing of the timer. The bias will give us exactly the * 1.5 tick we need. But, because the bias is * statistical, we have to test that we don't drop below - * the minimum feasible timer (which is 2 ticks). + * the minimum feasible timer (which is 1 tick). */ TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp), max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX); -- 2.41.0