git: 7835925aa420 - main - ipfilter fil.c: Fix two typos in comments

From: Cy Schubert <cy_at_FreeBSD.org>
Date: Wed, 15 Dec 2021 16:09:45 UTC
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/src/commit/?id=7835925aa420ae3046b5f13899a0c208741d0ad4

commit 7835925aa420ae3046b5f13899a0c208741d0ad4
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2021-12-15 03:44:58 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2021-12-15 16:09:39 +0000

    ipfilter fil.c: Fix two typos in comments
    
    MFC after:      3 days
---
 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 436556338582..36fab549ae43 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,    */