git: a28181aad571 - stable/13 - ipfilter fil.c: Fix two typos in comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Dec 2021 23:35:25 UTC
The branch stable/13 has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=a28181aad571e544719e099cec7b10a1872e6082 commit a28181aad571e544719e099cec7b10a1872e6082 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:34:40 +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 7e86c58cd3b6..701cde740359 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, */