diff options
author | 2004-03-11 12:16:46 +0000 | |
---|---|---|
committer | 2004-03-11 12:16:46 +0000 | |
commit | c331161edfc95796cc27b2ddc6ed7f9f30728521 (patch) | |
tree | 6e01c2e276f07eff9e6b63346b794cb8cfab79ec | |
parent | ssh, sshd: sync version output, ok djm (diff) | |
download | wireguard-openbsd-c331161edfc95796cc27b2ddc6ed7f9f30728521.tar.xz wireguard-openbsd-c331161edfc95796cc27b2ddc6ed7f9f30728521.zip |
Type in Makefile. CLFAGS != CFLAGS and we don't want -Wredundant-decls the
standard include files are full of redundant declarations. OK henning@
-rw-r--r-- | usr.sbin/bgpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/Makefile b/usr.sbin/bgpd/Makefile index 4e0aecdf3d1..831442774f1 100644 --- a/usr.sbin/bgpd/Makefile +++ b/usr.sbin/bgpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2004/02/19 23:07:00 claudio Exp $ +# $OpenBSD: Makefile,v 1.18 2004/03/11 12:16:46 claudio Exp $ .PATH: ${.CURDIR}/.. @@ -8,7 +8,7 @@ SRCS= bgpd.c buffer.c session.c log.c parse.y config.c imsg.c \ control.c pfkey.c rde_update.c rde_attr.c printconf.c rde_filter.c CFLAGS+= -Wall -I${.CURDIR} CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -CLFAGS+= -Wmissing-declarations -Wredundant-decls +CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare YFLAGS= |