svn commit: r228612 - head/sbin/ipf

Dimitry Andric dim at FreeBSD.org
Sat Dec 17 00:54:10 UTC 2011


Author: dim
Date: Sat Dec 17 00:54:09 2011
New Revision: 228612
URL: http://svn.freebsd.org/changeset/base/228612

Log:
  Use both NO_WFORMAT and NO_WARRAY_BOUNDS for sbin/ipf, it would be too
  disruptive to actually fix all the warnings, and the code hasn't been
  maintained for several years.
  
  MFC after:	1 week

Modified:
  head/sbin/ipf/Makefile.inc

Modified: head/sbin/ipf/Makefile.inc
==============================================================================
--- head/sbin/ipf/Makefile.inc	Sat Dec 17 00:26:45 2011	(r228611)
+++ head/sbin/ipf/Makefile.inc	Sat Dec 17 00:54:09 2011	(r228612)
@@ -1,6 +1,8 @@
 #	$FreeBSD$
 
 WARNS?=		2
+NO_WFORMAT=
+NO_WARRAY_BOUNDS=
 
 CFLAGS+=	-I${.CURDIR}/../../../contrib/ipfilter
 CFLAGS+=	-I${.CURDIR}/../../../contrib/ipfilter/tools


More information about the svn-src-all mailing list