Consolidate two adjacent conditional blocks
I actually believe the code in question should be elsewhere (in the preceding function). MFC after: 1 week
This commit is contained in:
parent
b9c7add838
commit
cb3569e70b
@ -362,14 +362,10 @@ bad: if (m != NULL)
|
||||
int
|
||||
ether_output_frame(struct ifnet *ifp, struct mbuf *m)
|
||||
{
|
||||
int error;
|
||||
#if defined(INET) || defined(INET6)
|
||||
struct ip_fw *rule = ip_dn_claim_rule(m);
|
||||
#else
|
||||
void *rule = NULL;
|
||||
#endif
|
||||
int error;
|
||||
|
||||
#if defined(INET) || defined(INET6)
|
||||
if (IPFW_LOADED && ether_ipfw != 0) {
|
||||
if (ether_ipfw_chk(&m, ifp, &rule, 0) == 0) {
|
||||
if (m) {
|
||||
|
Loading…
Reference in New Issue
Block a user