On Fri, Oct 26, 2001 at 06:16:12PM +0200, Andrea Campi wrote:
> Anybody has any idea how to properly fix?
Can you test the following patch?
David.
Index: uipc_usrreq.c
===================================================================
RCS file: /cvs/FreeBSD-CVS/src/sys/kern/uipc_usrreq.c,v
retrieving revision 1.74
diff -u -r1.74 uipc_usrreq.c
--- uipc_usrreq.c 9 Oct 2001 21:40:30 -0000 1.74
+++ uipc_usrreq.c 27 Oct 2001 18:30:56 -0000
@@ -1420,7 +1420,7 @@
while (m0) {
for (m = m0; m; m = m->m_next) {
- if (m->m_type == MT_CONTROL)
+ if (m->m_type != MT_CONTROL)
continue;
cm = mtod(m, struct cmsghdr *);
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message