diff options
Diffstat (limited to 'sys/netgraph/ng_ipfw.c')
-rw-r--r-- | sys/netgraph/ng_ipfw.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netgraph/ng_ipfw.c b/sys/netgraph/ng_ipfw.c index b4b421bf882d3..031a6157d2886 100644 --- a/sys/netgraph/ng_ipfw.c +++ b/sys/netgraph/ng_ipfw.c @@ -232,8 +232,8 @@ ng_ipfw_rcvdata(hook_p hook, item_p item) struct ip *ip; if (m->m_len < sizeof(struct ip) && - (m = m_pullup(m, sizeof(struct ip))) == NULL) - return(EINVAL); + (m = m_pullup(m, sizeof(struct ip))) == NULL) + return (EINVAL); ip = mtod(m, struct ip *); @@ -298,8 +298,8 @@ ng_ipfw_input(struct mbuf **m0, int dir, struct ip_fw_args *fwa, int tee) return (ENOMEM); /* which is ignored */ if (m->m_len < sizeof(struct ip) && - (m = m_pullup(m, sizeof(struct ip))) == NULL) - return(EINVAL); + (m = m_pullup(m, sizeof(struct ip))) == NULL) + return (EINVAL); ip = mtod(m, struct ip *); ip->ip_len = htons(ip->ip_len); |