summaryrefslogtreecommitdiffstats
path: root/sys/net/if_ethersubr.c
diff options
context:
space:
mode:
authorthompsa <thompsa@FreeBSD.org>2005-06-05 03:49:23 +0000
committerthompsa <thompsa@FreeBSD.org>2005-06-05 03:49:23 +0000
commitf8d823d971d2700aa0b6171e86b7b3e33349de58 (patch)
treece96fb3907c71a8f05ee0f4b62630b3e1f7d675f /sys/net/if_ethersubr.c
parent00df05761721cdc32a0a68c86ca0ab69eebb8944 (diff)
downloadFreeBSD-src-f8d823d971d2700aa0b6171e86b7b3e33349de58.zip
FreeBSD-src-f8d823d971d2700aa0b6171e86b7b3e33349de58.tar.gz
Fix indentation of two comment blocks from the last commit.
Approved by: mlaier (mentor)
Diffstat (limited to 'sys/net/if_ethersubr.c')
-rw-r--r--sys/net/if_ethersubr.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c
index 7c62f37..358ea53 100644
--- a/sys/net/if_ethersubr.c
+++ b/sys/net/if_ethersubr.c
@@ -591,12 +591,12 @@ ether_input(struct ifnet *ifp, struct mbuf *m)
}
/*
- * Tap the packet off here for a bridge. bridge_input()
- * will return NULL if it has consumed the packet, otherwise
- * it gets processed as normal. Note that bridge_input()
- * will always return the original packet if we need to
- * process it locally.
- */
+ * Tap the packet off here for a bridge. bridge_input()
+ * will return NULL if it has consumed the packet, otherwise
+ * it gets processed as normal. Note that bridge_input()
+ * will always return the original packet if we need to
+ * process it locally.
+ */
if (ifp->if_bridge) {
KASSERT(bridge_input_p != NULL,
("ether_input: if_bridge not loaded!"));
@@ -618,10 +618,10 @@ ether_input(struct ifnet *ifp, struct mbuf *m)
if (m == NULL)
return;
/*
- * Bridge has determined that the packet is for us.
- * Update our interface pointer -- we may have had
- * to "bridge" the packet locally.
- */
+ * Bridge has determined that the packet is for us.
+ * Update our interface pointer -- we may have had
+ * to "bridge" the packet locally.
+ */
ifp = m->m_pkthdr.rcvif;
}
OpenPOWER on IntegriCloud