Date: Fri, 19 Nov 2021 18:16:21 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: b4fbc855a518 - main - cc_newreno(4): Fix a typo in a source code comment Message-ID: <202111191816.1AJIGLqp029823@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=b4fbc855a518c2bcad60c66c8f4e149996033b10 commit b4fbc855a518c2bcad60c66c8f4e149996033b10 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-11-19 18:16:02 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-11-19 18:16:02 +0000 cc_newreno(4): Fix a typo in a source code comment - s/conditons/conditions/ MFC after: 3 days --- sys/netinet/cc/cc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/cc/cc.c b/sys/netinet/cc/cc.c index 457f5a6e55e1..b49e5940bc7e 100644 --- a/sys/netinet/cc/cc.c +++ b/sys/netinet/cc/cc.c @@ -358,7 +358,7 @@ newreno_cc_post_recovery(struct cc_var *ccv) if (pipe < CCV(ccv, snd_ssthresh)) /* * Ensure that cwnd does not collapse to 1 MSS under - * adverse conditons. Implements RFC6582 + * adverse conditions. Implements RFC6582 */ CCV(ccv, snd_cwnd) = max(pipe, CCV(ccv, t_maxseg)) + CCV(ccv, t_maxseg);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111191816.1AJIGLqp029823>