diff options
author | cy <cy@FreeBSD.org> | 2017-02-06 13:32:22 +0000 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2017-02-06 13:32:22 +0000 |
commit | 14e155903dc93ce6bcd38dc26b36593e732b65d5 (patch) | |
tree | a1aa6253a6e2825f1bd7b1a7599ec0f259955e89 | |
parent | 42ce5f891365cc0ea446b128d8f1c90325245961 (diff) | |
download | FreeBSD-src-14e155903dc93ce6bcd38dc26b36593e732b65d5.zip FreeBSD-src-14e155903dc93ce6bcd38dc26b36593e732b65d5.tar.gz |
MFC r312982:
Correct comment grammar and make it easier to understand.
-rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index eba8ca3..6519f99 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1262,8 +1262,8 @@ send: #ifdef INET6 if (isipv6) { /* - * ip6_plen is not need to be filled now, and will be filled - * in ip6_output. + * There is no need to fill in ip6_plen right now. + * It will be filled later by ip6_output. */ m->m_pkthdr.csum_flags = CSUM_TCP_IPV6; th->th_sum = in6_cksum_pseudo(ip6, sizeof(struct tcphdr) + |