Date: Tue, 23 Jan 2024 06:44:01 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 2eaee65182be - stable/14 - netpfil: Fix two typos in source code comments Message-ID: <202401230644.40N6i1NV056556@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=2eaee65182be345c1962ea58c593556f8f33f44b commit 2eaee65182be345c1962ea58c593556f8f33f44b Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-01-20 16:30:57 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-01-23 06:41:33 +0000 netpfil: Fix two typos in source code comments - s/withing/within/ (cherry picked from commit 938918a9f478e94fbe65ba84510e4755024560be) --- sys/netpfil/ipfw/ip_fw_dynamic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netpfil/ipfw/ip_fw_dynamic.c b/sys/netpfil/ipfw/ip_fw_dynamic.c index 5b756cd4c980..283032048845 100644 --- a/sys/netpfil/ipfw/ip_fw_dynamic.c +++ b/sys/netpfil/ipfw/ip_fw_dynamic.c @@ -2456,7 +2456,7 @@ dyn_send_keepalive_ipv4(struct ip_fw_chain *chain) CK_SLIST_FOREACH(s, &V_dyn_ipv4[bucket], entry) { /* * Only established TCP connections that will - * become expired withing dyn_keepalive_interval. + * become expired within dyn_keepalive_interval. */ if (s->proto != IPPROTO_TCP || (s->data->state & BOTH_SYN) != BOTH_SYN || @@ -2563,7 +2563,7 @@ dyn_send_keepalive_ipv6(struct ip_fw_chain *chain) CK_SLIST_FOREACH(s, &V_dyn_ipv6[bucket], entry) { /* * Only established TCP connections that will - * become expired withing dyn_keepalive_interval. + * become expired within dyn_keepalive_interval. */ if (s->proto != IPPROTO_TCP || (s->data->state & BOTH_SYN) != BOTH_SYN ||
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401230644.40N6i1NV056556>