diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-04-12 19:19:12 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-04-12 19:19:12 +0000 |
commit | 2cb4e233b2f5b01c7c2be614b500f906457581d4 (patch) | |
tree | c454c37eda6d0605b5dd479e23a78c6d61a333e8 /usr.sbin/dhcpd | |
parent | 5a8958132460805941afaa4fb96636bd7bd6c005 (diff) |
Inspired by recent dhcrelay changes, bring in stricter CFLAGS!
Diffstat (limited to 'usr.sbin/dhcpd')
-rw-r--r-- | usr.sbin/dhcpd/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/dhcpd/Makefile b/usr.sbin/dhcpd/Makefile index 7300cc3de35..1825954f3b9 100644 --- a/usr.sbin/dhcpd/Makefile +++ b/usr.sbin/dhcpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2017/02/13 19:13:14 krw Exp $ +# $OpenBSD: Makefile,v 1.7 2017/04/12 19:19:11 krw Exp $ .include <bsd.own.mk> @@ -13,3 +13,6 @@ LDADD+=-lcrypto CFLAGS+=-Wall .include <bsd.prog.mk> +CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes +CFLAGS+=-Wmissing-declarations +CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual |