ipfilter: remove doubled semicolons

Local commit; ipfilter upstream is inactive.

Discussed with:	cy
MFC after:	3 days
This commit is contained in:
Ed Maste 2021-08-16 13:16:23 -04:00
parent c1a540709a
commit 8fa63f44e6
2 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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);