git: a9e7316c2402 - stable/12 - ipfilter fil.c: Fix two typos in comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Dec 2021 23:38:02 UTC
The branch stable/12 has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=a9e7316c2402e00b0d957c89b5ede05e108d9e46 commit a9e7316c2402e00b0d957c89b5ede05e108d9e46 Author: Cy Schubert <cy@FreeBSD.org> AuthorDate: 2021-12-15 03:44:58 +0000 Commit: Cy Schubert <cy@FreeBSD.org> CommitDate: 2021-12-21 23:37:25 +0000 ipfilter fil.c: Fix two typos in comments (cherry picked from commit 7835925aa420ae3046b5f13899a0c208741d0ad4) --- sys/contrib/ipfilter/netinet/fil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/contrib/ipfilter/netinet/fil.c b/sys/contrib/ipfilter/netinet/fil.c index da8e77d6a869..462c727af613 100644 --- a/sys/contrib/ipfilter/netinet/fil.c +++ b/sys/contrib/ipfilter/netinet/fil.c @@ -585,7 +585,7 @@ ipf_pr_ipv6hdr(fin) /* * IPv6 fragment case 1 - see comment for ipf_pr_fragment6(). - * "go != 0" imples the above loop hasn't arrived at a layer 4 header. + * "go != 0" implies the above loop hasn't arrived at a layer 4 header. */ if ((go != 0) && (fin->fin_flx & FI_FRAG) && (fin->fin_off == 0)) { ipf_main_softc_t *softc = fin->fin_main_soft; @@ -2376,7 +2376,7 @@ ipf_check_ipf(fin, fr, portcmp) /* If a match is found, the value of fr_flags from the rule becomes the */ /* return value and fin->fin_fr points to the matched rule. */ /* */ -/* This function may be called recusively upto 16 times (limit inbuilt.) */ +/* This function may be called recursively upto 16 times (limit inbuilt.) */ /* When unwinding, it should finish up with fin_depth as 0. */ /* */ /* Could be per interface, but this gets real nasty when you don't have, */