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 | 7e65e87d29305ecd85ba7e06e8729d9768eb2067 (patch) | |
tree | ab8b7877d1d09f6c00d37bc79dfa8d89eec718d6 /sys/netinet/tcp_output.c | |
parent | fb74bd6a61f647b480386ee1bb23d218fab87190 (diff) | |
download | FreeBSD-src-7e65e87d29305ecd85ba7e06e8729d9768eb2067.zip FreeBSD-src-7e65e87d29305ecd85ba7e06e8729d9768eb2067.tar.gz |
MFC r312982:
Correct comment grammar and make it easier to understand.
Diffstat (limited to 'sys/netinet/tcp_output.c')
-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 b5781d3..6dbfeaf 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1252,8 +1252,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) + |