diff options
author | 2015-10-05 17:26:22 +0000 | |
---|---|---|
committer | 2015-10-05 17:26:22 +0000 | |
commit | 5b62e2be1d43dfde1e18fbaf587230098df4e78a (patch) | |
tree | 256bd00a8443731eb0adb61dac0f576a0156f9ac | |
parent | some more bzero->explicit_bzero, from Michael McConville (diff) | |
download | wireguard-openbsd-5b62e2be1d43dfde1e18fbaf587230098df4e78a.tar.xz wireguard-openbsd-5b62e2be1d43dfde1e18fbaf587230098df4e78a.zip |
this process deserves -fstack-protector-all
-rw-r--r-- | usr.sbin/ntpd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ntpd/Makefile b/usr.sbin/ntpd/Makefile index 3150e4ad3d5..20582ce62f1 100644 --- a/usr.sbin/ntpd/Makefile +++ b/usr.sbin/ntpd/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.14 2015/02/17 05:48:18 miod Exp $ +# $OpenBSD: Makefile,v 1.15 2015/10/05 17:26:22 deraadt Exp $ PROG= ntpd SRCS= ntpd.c log.c ntp.c ntp_msg.c parse.y config.c \ server.c client.c sensors.c util.c ntp_dns.c \ control.c constraint.c CFLAGS+= -Wall -I${.CURDIR} +CFLAGS+= -fstack-protector-all CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual |