PERFORCE change 118399 for review

Marko Zec zec at FreeBSD.org
Thu Apr 19 07:39:16 UTC 2007


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

Change 118399 by zec at zec_tca51 on 2007/04/19 07:38:43

	Fix to allow compilation with nooptions VIMAGE.

Affected files ...

.. //depot/projects/vimage/src/sys/contrib/pf/net/pf_ioctl.c#5 edit

Differences ...

==== //depot/projects/vimage/src/sys/contrib/pf/net/pf_ioctl.c#5 (text+ko) ====

@@ -401,10 +401,14 @@
 	callout_reset(&V_pf_expire_to, my_timeout[PFTM_INTERVAL] * hz,
 	    pf_purge_timeout, curvnet);
 
-if (curvnet == &vnet_0) {
+#ifdef VIMAGE
+	if (curvnet == &vnet_0) {
+#endif
 	pf_normalize_init();
 	pf_pfil_hooked = 0;
-}
+#ifdef VIMAGE
+	}
+#endif
 
 	bzero(&V_pf_status, sizeof(V_pf_status));
 	/* XXX do our best to avoid a conflict */


More information about the p4-projects mailing list