From 75fcd27ac28333bc204947400f21f7a3ac81fb28 Mon Sep 17 00:00:00 2001 From: Michael Tuexen Date: Mon, 23 Nov 2020 10:13:56 +0000 Subject: [PATCH] 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 --- sys/netinet/tcp_input.c | 2 +- sys/netinet/tcp_syncache.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index a1ed0f7ea43c..8fe7169b3c83 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1695,7 +1695,7 @@ tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so, } /* * 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. */ diff --git a/sys/netinet/tcp_syncache.c b/sys/netinet/tcp_syncache.c index 6f4bdbc2f32d..4697374084ab 100644 --- a/sys/netinet/tcp_syncache.c +++ b/sys/netinet/tcp_syncache.c @@ -1213,7 +1213,7 @@ syncache_expand(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, /* * 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. */