summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2004-03-17 11:42:30 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2004-03-17 11:42:30 +0000
commitae1750c12efce47c6dec8447045e3550d741e804 (patch)
tree40301eb4caa8bbc22768f20dd4c6a3374274ddf8 /sys/netinet
parent3f41a2b6be36feb98cb6d64bc99de77b14690afb (diff)
typo in comment (fragment->segment); ok itojun@
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/tcp_input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 70b40e74737..184356ceadf 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.157 2004/03/02 12:51:12 markus Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.158 2004/03/17 11:42:29 markus Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -217,7 +217,7 @@ tcp_reass(tp, th, m, tlen)
LIST_REMOVE(tiqe, ipqe_q);
}
if (tiqe == NULL || th->th_seq != tp->rcv_nxt) {
- /* Flush fragments for this connection */
+ /* Flush segment queue for this connection */
tcp_freeq(tp);
tcpstat.tcps_rcvmemdrop++;
m_freem(m);
@@ -282,7 +282,7 @@ tcp_reass(tp, th, m, tlen)
pool_put(&tcpqe_pool, q);
}
- /* Insert the new fragment queue entry into place. */
+ /* Insert the new segment queue entry into place. */
tiqe->ipqe_m = m;
th->th_reseqlen = *tlen;
tiqe->ipqe_tcp = th;