mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
ipfilter: remove doubled semicolons
Local commit; ipfilter upstream is inactive. Discussed with: cy MFC after: 3 days
This commit is contained in:
parent
c1a540709a
commit
8fa63f44e6
2 changed files with 3 additions and 3 deletions
|
|
@ -1181,7 +1181,7 @@ ipf_frag_nat_next(softc, token, itp)
|
|||
ipftoken_t *token;
|
||||
ipfgeniter_t *itp;
|
||||
{
|
||||
ipf_frag_softc_t *softf = softc->ipf_frag_soft;;
|
||||
ipf_frag_softc_t *softf = softc->ipf_frag_soft;
|
||||
|
||||
#ifdef USE_MUTEXES
|
||||
return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist,
|
||||
|
|
|
|||
|
|
@ -2855,8 +2855,8 @@ ipf_checkicmpmatchingstate(fin)
|
|||
|
||||
tcp = (tcphdr_t *)((char *)oip + (IP_HL(oip) << 2));
|
||||
|
||||
hv += tcp->th_dport;;
|
||||
hv += tcp->th_sport;;
|
||||
hv += tcp->th_dport;
|
||||
hv += tcp->th_sport;
|
||||
hv = DOUBLE_HASH(hv);
|
||||
|
||||
READ_ENTER(&softc->ipf_state);
|
||||
|
|
|
|||
Loading…
Reference in a new issue