mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
add brackets and fix indent on last commit
This commit is contained in:
parent
564bc49700
commit
e5e5cdfeec
1 changed files with 4 additions and 3 deletions
|
|
@ -495,10 +495,11 @@ tooshort:
|
|||
packet will be treated improperly in ip_output. */
|
||||
struct m_tag *ipfw_tag;
|
||||
ipfw_tag = m_tag_locate(m, MTAG_IPFW_RULE, 0, NULL);
|
||||
if (ipfw_tag != NULL)
|
||||
if (ipfw_tag != NULL) {
|
||||
m_tag_delete(m, ipfw_tag);
|
||||
m->m_flags &= ~M_IPIN_SKIPPFIL;
|
||||
goto passin;
|
||||
}
|
||||
m->m_flags &= ~M_IPIN_SKIPPFIL;
|
||||
goto passin;
|
||||
}
|
||||
|
||||
odst = ip->ip_dst;
|
||||
|
|
|
|||
Loading…
Reference in a new issue