diff options
author | andre <andre@FreeBSD.org> | 2007-05-06 13:38:25 +0000 |
---|---|---|
committer | andre <andre@FreeBSD.org> | 2007-05-06 13:38:25 +0000 |
commit | 540d02c0b183c23031737ce9b7865e5e3450cf8b (patch) | |
tree | 115acb39f1dca72a4852acb62f0847a276dbaf11 /sys/netinet/tcp_timer.c | |
parent | 89c18638189dda14eb8d4ca67042efc74078c808 (diff) | |
download | FreeBSD-src-540d02c0b183c23031737ce9b7865e5e3450cf8b.zip FreeBSD-src-540d02c0b183c23031737ce9b7865e5e3450cf8b.tar.gz |
Fix two comments.
Diffstat (limited to 'sys/netinet/tcp_timer.c')
-rw-r--r-- | sys/netinet/tcp_timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c index c3fd03c..0e4f4e3 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 |