Clean up extraneous brackets.

This commit is contained in:
Cy Schubert 2017-04-15 23:34:05 +00:00
parent 408b5f809a
commit b96a714f45

View File

@ -3414,8 +3414,8 @@ ipf_state_check(fin, passp)
* If this packet is a fragment and the rule says to track fragments,
* then create a new fragment cache entry.
*/
if (((fin->fin_flx & FI_FRAG) && FR_ISPASS(is->is_pass)) &&
((is->is_pass & FR_KEEPFRAG)))
if (fin->fin_flx & FI_FRAG && FR_ISPASS(is->is_pass) &&
is->is_pass & FR_KEEPFRAG)
(void) ipf_frag_new(softc, fin, is->is_pass);
/*