summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2015-05-07 01:55:45 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2015-05-07 01:55:45 +0000
commitc05f83a45c306f6088bf20153aa7cb83189c6d01 (patch)
treec194a22a5f449f6c6a43d33edbbf47f9959ef2ae /sys/net
parent41168f0f80a0a37be26239fddde5f93850b799f4 (diff)
fix indentation
ok miod@
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if_bridge.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c
index 48d3c3032ce..001133a5e4f 100644
--- a/sys/net/if_bridge.c
+++ b/sys/net/if_bridge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bridge.c,v 1.236 2015/05/04 10:24:08 mpi Exp $ */
+/* $OpenBSD: if_bridge.c,v 1.237 2015/05/07 01:55:43 jsg Exp $ */
/*
* Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net)
@@ -1677,11 +1677,11 @@ bridge_span(struct bridge_softc *sc, struct mbuf *morig)
if ((ifp->if_flags & IFF_RUNNING) == 0)
continue;
- if (IF_QFULL(&ifp->if_snd)) {
- IF_DROP(&ifp->if_snd);
- sc->sc_if.if_oerrors++;
- continue;
- }
+ if (IF_QFULL(&ifp->if_snd)) {
+ IF_DROP(&ifp->if_snd);
+ sc->sc_if.if_oerrors++;
+ continue;
+ }
mc = m_copym(m, 0, M_COPYALL, M_DONTWAIT);
if (mc == NULL) {