Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/netinet/raw_ip.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/netinet/raw_ip.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- src/sys/netinet/raw_ip.c 2003/01/30 23:43:33 1.66 +++ src/sys/netinet/raw_ip.c 2003/02/26 06:31:15 1.67 @@ -1,4 +1,4 @@ -/* $NetBSD: raw_ip.c,v 1.66 2003/01/30 23:43:33 thorpej Exp $ */ +/* $NetBSD: raw_ip.c,v 1.67 2003/02/26 06:31:15 matt Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -65,7 +65,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.66 2003/01/30 23:43:33 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.67 2003/02/26 06:31:15 matt Exp $"); #include "opt_ipsec.h" #include "opt_mrouting.h" @@ -443,6 +443,7 @@ rip_ctloutput(op, so, level, optname, m) switch (optname) { case IP_HDRINCL: *m = m_get(M_WAIT, MT_SOOPTS); + MCLAIM((*m), so->so_mowner); (*m)->m_len = sizeof (int); *mtod(*m, int *) = inp->inp_flags & INP_HDRINCL ? 1 : 0; break;