Date: Sat, 6 Oct 2007 09:42:51 GMT From: Marko Zec <zec@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 127243 for review Message-ID: <200710060942.l969gpac052300@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=127243 Change 127243 by zec@zec_tca51 on 2007/10/06 09:42:42 Fix options VIMAGE + options IPSEC build, which probably got broken by yesterday's IFC. Affected files ... .. //depot/projects/vimage/src/sys/netinet/tcp_input.c#23 edit Differences ... ==== //depot/projects/vimage/src/sys/netinet/tcp_input.c#23 (text+ko) ==== @@ -497,12 +497,12 @@ #ifdef IPSEC #ifdef INET6 if (isipv6 && ipsec6_in_reject(m, inp)) { - ipsec6stat.in_polvio++; + V_ipsec6stat.in_polvio++; goto dropunlock; } else #endif /* INET6 */ if (ipsec4_in_reject(m, inp) != 0) { - ipsec4stat.in_polvio++; + V_ipsec4stat.in_polvio++; goto dropunlock; } #endif /* IPSEC */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200710060942.l969gpac052300>