mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
ipfw: Spell PFIL_PASS correctly.
Sponsored by: Netapp Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D37375
This commit is contained in:
parent
9e16087e36
commit
1854fb8fd8
1 changed files with 2 additions and 2 deletions
|
|
@ -139,7 +139,7 @@ again:
|
|||
args.rule = *((struct ipfw_rule_ref *)(tag+1));
|
||||
m_tag_delete(*m0, tag);
|
||||
if (args.rule.info & IPFW_ONEPASS)
|
||||
return (0);
|
||||
return (PFIL_PASS);
|
||||
args.flags |= IPFW_ARGS_REF;
|
||||
}
|
||||
|
||||
|
|
@ -213,7 +213,7 @@ again:
|
|||
if ((args.flags & IPFW_ARGS_NH6) == 0)
|
||||
bcopy(psa, tag + 1, len);
|
||||
m_tag_prepend(*m0, tag);
|
||||
ret = 0;
|
||||
ret = PFIL_PASS;
|
||||
#ifdef INET6
|
||||
/* IPv6 next hop needs additional handling */
|
||||
if (args.flags & (IPFW_ARGS_NH6 | IPFW_ARGS_NH6PTR)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue