From bb89ddf57b52e07af7cb376cfc81ed92e7990b48 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 11 Jul 2002 17:33:37 +0000 Subject: [PATCH] Uncommented WARNS=0. ipfw2.c is full of printf format errors that are fatal on alphas. Fixed setting of WARNS. WARNS should never be set unconditionally, since this breaks testing of different WARNS values by setting it at a higher level (e.g., on the command line). --- sbin/ipfw/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/ipfw/Makefile b/sbin/ipfw/Makefile index e49fe99a4adb..023f682b25f5 100644 --- a/sbin/ipfw/Makefile +++ b/sbin/ipfw/Makefile @@ -2,7 +2,7 @@ PROG= ipfw SRCS= ipfw2.c -#WARNS= 0 +WARNS?= 0 MAN= ipfw.8 .include