aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1998-09-02 15:11:14 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1998-09-02 15:11:14 +0000
commitdb028362a0feb54e958d9f0aeb6e75aa62ae7e6e (patch)
treed2c1e95fb61c5f9f535b7f2db1b5300fd820ae9c /sys
parentcb997c92206dfaa8a825dd5c78e339b0d3023d6e (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_output.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index 4e6c64675358..be7722885a65 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
- * $Id: ip_output.c,v 1.80 1998/08/01 08:44:33 peter Exp $
+ * $Id: ip_output.c,v 1.81 1998/08/23 03:07:14 wollman Exp $
*/
#define _IP_VHL
@@ -580,6 +580,7 @@ sendit:
ipstat.ips_odropped++;
goto sendorfree;
}
+ m->m_flags |= (m0->m_flags & M_MCAST);
m->m_data += max_linkhdr;
mhip = mtod(m, struct ip *);
*mhip = *ip;