summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_ipfw.c
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2005-02-11 23:17:50 +0000
committerglebius <glebius@FreeBSD.org>2005-02-11 23:17:50 +0000
commit39f3c37ccf56b87cecb8b9669f75fe56dc5dbcbf (patch)
tree724461002686e6d71c8e7520702e19e9abe05df6 /sys/netgraph/ng_ipfw.c
parentb8a36d0c630d4c447ab50cc3cc8fcb5e349265b4 (diff)
downloadFreeBSD-src-39f3c37ccf56b87cecb8b9669f75fe56dc5dbcbf.zip
FreeBSD-src-39f3c37ccf56b87cecb8b9669f75fe56dc5dbcbf.tar.gz
style: fix indentation and spacing.
Submitted by: ru
Diffstat (limited to 'sys/netgraph/ng_ipfw.c')
-rw-r--r--sys/netgraph/ng_ipfw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netgraph/ng_ipfw.c b/sys/netgraph/ng_ipfw.c
index b4b421b..031a615 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);
OpenPOWER on IntegriCloud