svn commit: r367946 - head/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Mon Nov 23 10:13:57 UTC 2020
Author: tuexen
Date: Mon Nov 23 10:13:56 2020
New Revision: 367946
URL: https://svnweb.freebsd.org/changeset/base/367946
Log:
Fix two occurences of a typo in a comment introduced in r367530.
Reported by: lstewart@
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D27148
Modified:
head/sys/netinet/tcp_input.c
head/sys/netinet/tcp_syncache.c
Modified: head/sys/netinet/tcp_input.c
==============================================================================
--- head/sys/netinet/tcp_input.c Mon Nov 23 04:39:29 2020 (r367945)
+++ head/sys/netinet/tcp_input.c Mon Nov 23 10:13:56 2020 (r367946)
@@ -1695,7 +1695,7 @@ tcp_do_segment(struct mbuf *m, struct tcphdr *th, stru
}
/*
* If timestamps were not negotiated during SYN/ACK and a
- * segment without a timestamp is received, ignore the
+ * segment with a timestamp is received, ignore the
* timestamp and process the packet normally.
* See section 3.2 of RFC 7323.
*/
Modified: head/sys/netinet/tcp_syncache.c
==============================================================================
--- head/sys/netinet/tcp_syncache.c Mon Nov 23 04:39:29 2020 (r367945)
+++ head/sys/netinet/tcp_syncache.c Mon Nov 23 10:13:56 2020 (r367946)
@@ -1213,7 +1213,7 @@ syncache_expand(struct in_conninfo *inc, struct tcpopt
/*
* If timestamps were not negotiated during SYN/ACK and a
- * segment without a timestamp is received, ignore the
+ * segment with a timestamp is received, ignore the
* timestamp and process the packet normally.
* See section 3.2 of RFC 7323.
*/
More information about the svn-src-all
mailing list