git: cfd05de19467 - main - netpfil: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 02 Aug 2023 07:41:38 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=cfd05de1946799c6353b07da5d351027d8471203 commit cfd05de1946799c6353b07da5d351027d8471203 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2023-08-02 07:41:29 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2023-08-02 07:41:29 +0000 netpfil: Fix a typo in a source code comment - s/interprted/interpreted/ MFC after: 3 days --- sys/netpfil/ipfilter/netinet/ip_state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netpfil/ipfilter/netinet/ip_state.c b/sys/netpfil/ipfilter/netinet/ip_state.c index 2e6913db8f88..67023d6de634 100644 --- a/sys/netpfil/ipfilter/netinet/ip_state.c +++ b/sys/netpfil/ipfilter/netinet/ip_state.c @@ -1255,7 +1255,7 @@ ipf_state_matchisps(ipstate_t *is1, ipstate_t *is2) case IPPROTO_TCP : case IPPROTO_UDP : case IPPROTO_GRE : - /* greinfo_t can be also interprted as port pair */ + /* greinfo_t can be also interpreted as port pair */ rv = ipf_state_matchports(&is1->is_ps.is_us, &is2->is_ps.is_us); break;