diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-29 11:42:07 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-29 11:42:07 +0000 |
commit | 7752cb105c16185601d7696f01dcba6687c504fe (patch) | |
tree | 148df1c84a3d4cc6cb9ef648fc0aa42883d1f8b9 | |
parent | 1ce6eb722668e91eb59c8a07aff0c7cfd7504fe7 (diff) |
fix last fix that was unfix for the before previous fix.
that is, redundant ).
-rw-r--r-- | sys/net/if_ethersubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 31b32f13ff3..3485bcf7905 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -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) { |