summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_timer.c
diff options
context:
space:
mode:
authorAndre Oppermann <andre@FreeBSD.org>2007-05-06 13:38:25 +0000
committerAndre Oppermann <andre@FreeBSD.org>2007-05-06 13:38:25 +0000
commit37ba9d112a3a4a43d0b5333cefd167e8cc96e7b1 (patch)
tree115acb39f1dca72a4852acb62f0847a276dbaf11 /sys/netinet/tcp_timer.c
parentfe2e562728ba91e41bac910c79e959b70e6014b1 (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_timer.c')
-rw-r--r--sys/netinet/tcp_timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c
index c3fd03c2cdc0..0e4f4e38f95b 100644
--- a/sys/netinet/tcp_timer.c
+++ b/sys/netinet/tcp_timer.c
@@ -453,13 +453,13 @@ tcp_timer_2msl(struct tcpcb *tp, struct inpcb *inp)
tp->t_inpcb->inp_socket &&
(tp->t_inpcb->inp_socket->so_rcv.sb_state & SBS_CANTRCVMORE)) {
tcpstat.tcps_finwait2_drops++;
- return (1); /* tcp_close() */
+ return (1); /* tcp_close */
} else {
if (tp->t_state != TCPS_TIME_WAIT &&
(ticks - tp->t_rcvtime) <= tcp_maxidle)
tcp_timer_activate(tp, TT_2MSL, tcp_keepintvl);
else
- return (1); /* tcp_close( */
+ return (1); /* tcp_close */
}
#ifdef TCPDEBUG