git: fd46c830fd9a - stable/13 - netpfil: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 05 Aug 2023 04:41:17 UTC
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=fd46c830fd9a902f4e9382a3ecfca837477e5b2d commit fd46c830fd9a902f4e9382a3ecfca837477e5b2d Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2023-08-02 07:41:29 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2023-08-05 04:41:00 +0000 netpfil: Fix a typo in a source code comment - s/interprted/interpreted/ (cherry picked from commit cfd05de1946799c6353b07da5d351027d8471203) --- 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 463416f454a9..88e5ae96406b 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;