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.114.2.1 retrieving revision 1.116 diff -u -p -r1.114.2.1 -r1.116 --- src/sys/netinet/raw_ip.c 2013/02/25 00:30:05 1.114.2.1 +++ src/sys/netinet/raw_ip.c 2013/06/05 19:01:26 1.116 @@ -1,4 +1,4 @@ -/* $NetBSD: raw_ip.c,v 1.114.2.1 2013/02/25 00:30:05 tls Exp $ */ +/* $NetBSD: raw_ip.c,v 1.116 2013/06/05 19:01:26 christos Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -61,7 +61,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.114.2.1 2013/02/25 00:30:05 tls Exp $"); +__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.116 2013/06/05 19:01:26 christos Exp $"); #include "opt_inet.h" #include "opt_compat_netbsd.h" @@ -94,11 +94,11 @@ __KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1 #include #include -#ifdef FAST_IPSEC +#ifdef IPSEC #include #include #include -#endif /* FAST_IPSEC */ +#endif /* IPSEC */ #ifdef COMPAT_50 #include @@ -203,7 +203,7 @@ rip_input(struct mbuf *m, ...) continue; if (last == NULL) ; -#if defined(FAST_IPSEC) +#if defined(IPSEC) /* check AH/ESP integrity. */ else if (ipsec4_in_reject_so(m, last->inp_socket)) { IPSEC_STATINC(IPSEC_STAT_IN_POLVIO); @@ -217,7 +217,7 @@ rip_input(struct mbuf *m, ...) } last = inp; } -#if defined(FAST_IPSEC) +#if defined(IPSEC) /* check AH/ESP integrity. */ if (last != NULL && ipsec4_in_reject_so(m, last->inp_socket)) { m_freem(m);