summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_ipfw.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netgraph/ng_ipfw.c')
-rw-r--r--sys/netgraph/ng_ipfw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_ipfw.c b/sys/netgraph/ng_ipfw.c
index 092a041..066c31f 100644
--- a/sys/netgraph/ng_ipfw.c
+++ b/sys/netgraph/ng_ipfw.c
@@ -117,7 +117,7 @@ ng_ipfw_mod_event(module_t mod, int event, void *data)
!= 0) {
log(LOG_ERR, "%s: can't create ng_ipfw node", __func__);
break;
- };
+ }
/* Try to name node */
if (ng_name_node(fw_node, "ipfw") != 0)
@@ -240,7 +240,7 @@ ng_ipfw_rcvdata(hook_p hook, item_p item)
if (tag == NULL) {
NG_FREE_M(m);
return (EINVAL); /* XXX: find smth better */
- };
+ }
if (m->m_len < sizeof(struct ip) &&
(m = m_pullup(m, sizeof(struct ip))) == NULL)
OpenPOWER on IntegriCloud