aboutsummaryrefslogtreecommitdiff
path: root/sys/net/bridge.c
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2002-06-23 11:19:53 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2002-06-23 11:19:53 +0000
commit2f8ebbf49ffa6331ca885620093b9029fa26dd1d (patch)
treebf94e8fe303b9bbc08a91ea661e8c250dd68d3d7 /sys/net/bridge.c
parentdfe2d6470a63569b1567467ee5a7d2aabfe5500e (diff)
downloadsrc-2f8ebbf49ffa6331ca885620093b9029fa26dd1d.tar.gz
src-2f8ebbf49ffa6331ca885620093b9029fa26dd1d.zip
fix indentation, whitespace and a few comments.
Notes
Notes: svn path=/head/; revision=98669
Diffstat (limited to 'sys/net/bridge.c')
-rw-r--r--sys/net/bridge.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/bridge.c b/sys/net/bridge.c
index 6fc888e6a487..2baeadc61ab0 100644
--- a/sys/net/bridge.c
+++ b/sys/net/bridge.c
@@ -922,9 +922,9 @@ bdg_forward(struct mbuf *m0, struct ether_header *const eh, struct ifnet *dst)
* if_ethersubr.c:ether_ipfw_chk()
*/
- args.m = m0; /* the packet we are looking at */
- args.oif = NULL; /* this is an input packet */
- args.divert_rule = 0; /* we do not support divert yet */
+ args.m = m0; /* the packet we are looking at */
+ args.oif = NULL; /* this is an input packet */
+ args.divert_rule = 0; /* we do not support divert yet */
args.next_hop = NULL; /* we do not support forward yet */
args.eh = &save_eh; /* MAC header for bridged/MAC packets */
i = ip_fw_chk_ptr(&args);