fix last fix that was unfix for the before previous fix.
authormickey <mickey@openbsd.org>
Mon, 29 Apr 1996 11:42:06 +0000 (11:42 +0000)
committermickey <mickey@openbsd.org>
Mon, 29 Apr 1996 11:42:06 +0000 (11:42 +0000)
that is, redundant ).

sys/net/if_ethersubr.c

index 31b32f1..3485bcf 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_ethersubr.c,v 1.6 1996/04/29 01:13:01 mickey Exp $ */
+/*     $OpenBSD: if_ethersubr.c,v 1.7 1996/04/29 11:42:06 mickey Exp $ */
 /*     $NetBSD: if_ethersubr.c,v 1.18 1996/02/13 22:00:14 christos Exp $       */
 
 /*
@@ -191,7 +191,7 @@ ether_output(ifp, m0, dst, rt0)
                /* If broadcasting on a simplex interface, loopback a copy */
                if (*edst & 1)
                        m->m_flags |= (M_BCAST|M_MCAST);
-               if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
+               if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX)
                    && (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
                        M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
                        if (mcopy) {