diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-11-26 23:47:15 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-11-26 23:47:15 +0000 |
commit | 120537a1551ad0da98c620d6881bdc84593e87b5 (patch) | |
tree | a9a2e6501b831de7572a995c6878a626ba3fd489 /sys/kern/uipc_mbuf.c | |
parent | 7785a9a2a3ddfcbd59f1afbfc16ccf68fbe2a5f7 (diff) |
Doh, do not commit before compile. Found by sthen@
Diffstat (limited to 'sys/kern/uipc_mbuf.c')
-rw-r--r-- | sys/kern/uipc_mbuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index b0ce3d43e2f..0790ae1963f 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_mbuf.c,v 1.105 2008/11/26 22:56:07 claudio Exp $ */ +/* $OpenBSD: uipc_mbuf.c,v 1.106 2008/11/26 23:47:14 claudio Exp $ */ /* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */ /* @@ -375,7 +375,7 @@ m_defrag(struct mbuf *m, int how) struct mbuf *m0; if (m->m_next == NULL) - return; + return 0; #ifdef DIAGNOSTIC if (!(m->m_flags & M_PKTHDR)) |