mirror of
https://github.com/opnsense/src.git
synced 2026-03-11 02:31:16 -04:00
netpfil: Fix two typos in source code comments
- s/withing/within/ (cherry picked from commit 938918a9f478e94fbe65ba84510e4755024560be)
This commit is contained in:
parent
de3e802b9d
commit
2eaee65182
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ||
|
||||
|
|
|
|||
Loading…
Reference in a new issue