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 retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- src/sys/netinet/raw_ip.c 2011/07/17 20:54:53 1.112 +++ src/sys/netinet/raw_ip.c 2011/12/19 11:59:57 1.113 @@ -1,4 +1,4 @@ -/* $NetBSD: raw_ip.c,v 1.112 2011/07/17 20:54:53 joerg Exp $ */ +/* $NetBSD: raw_ip.c,v 1.113 2011/12/19 11:59:57 drochner Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -61,7 +61,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.112 2011/07/17 20:54:53 joerg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.113 2011/12/19 11:59:57 drochner Exp $"); #include "opt_inet.h" #include "opt_compat_netbsd.h" @@ -94,10 +94,10 @@ __KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1 #include #include -#ifdef IPSEC +#ifdef KAME_IPSEC #include #include -#endif /* IPSEC */ +#endif /* KAME_IPSEC */ #ifdef FAST_IPSEC #include @@ -208,7 +208,7 @@ rip_input(struct mbuf *m, ...) continue; if (last == NULL) ; -#if defined(IPSEC) || defined(FAST_IPSEC) +#if defined(KAME_IPSEC) || defined(FAST_IPSEC) /* check AH/ESP integrity. */ else if (ipsec4_in_reject_so(m, last->inp_socket)) { IPSEC_STATINC(IPSEC_STAT_IN_POLVIO); @@ -222,7 +222,7 @@ rip_input(struct mbuf *m, ...) } last = inp; } -#if defined(IPSEC) || defined(FAST_IPSEC) +#if defined(KAME_IPSEC) || defined(FAST_IPSEC) /* check AH/ESP integrity. */ if (last != NULL && ipsec4_in_reject_so(m, last->inp_socket)) { m_freem(m);