summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDaniel Hartmeier <dhartmei@cvs.openbsd.org>2004-01-28 20:19:25 +0000
committerDaniel Hartmeier <dhartmei@cvs.openbsd.org>2004-01-28 20:19:25 +0000
commit71ba10ac51080f927d6a7823593165f9c5e9620e (patch)
tree50ee0fa1f5fd8df2441cb9f027783aee2f0d17e3 /sys
parent63f957c69c6ab02e9d043db505bf642990039a87 (diff)
oh, i'll happily steal the commit. ok henning@, markus@, otto@ (iirc)
from KOZUKA Masahiro, fixes PR 3651
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/uipc_mbuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c
index 6415a016ddf..1e6cb942c65 100644
--- a/sys/kern/uipc_mbuf.c
+++ b/sys/kern/uipc_mbuf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uipc_mbuf.c,v 1.63 2003/08/12 05:09:18 mickey Exp $ */
+/* $OpenBSD: uipc_mbuf.c,v 1.64 2004/01/28 20:19:24 dhartmei Exp $ */
/* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */
/*
@@ -865,7 +865,7 @@ m_split(m0, len0, wait)
}
extpacket:
if (m->m_flags & M_EXT) {
- n->m_flags |= M_EXT;
+ n->m_ext = m->m_ext;
MCLADDREFERENCE(m, n);
n->m_data = m->m_data + len;
} else {