PERFORCE change 127243 for review

Marko Zec zec at FreeBSD.org
Sat Oct 6 02:42:52 PDT 2007


http://perforce.freebsd.org/chv.cgi?CH=127243

Change 127243 by zec at 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 */


More information about the p4-projects mailing list