aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2021-12-15 03:44:58 +0000
committerCy Schubert <cy@FreeBSD.org>2021-12-15 16:09:39 +0000
commit7835925aa420ae3046b5f13899a0c208741d0ad4 (patch)
treed497c39a5281240a52225b4afb49d92d08896981
parent9b602965311391f495f4edff246bcb1de5269bbb (diff)
downloadsrc-7835925aa420ae3046b5f13899a0c208741d0ad4.tar.gz
src-7835925aa420ae3046b5f13899a0c208741d0ad4.zip
ipfilter fil.c: Fix two typos in comments
MFC after: 3 days
-rw-r--r--sys/contrib/ipfilter/netinet/fil.c4
1 files 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, */