summaryrefslogtreecommitdiffstats
path: root/usr.sbin/tftp-proxy
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2017-04-16 10:16:35 +0000
committerjsg <jsg@openbsd.org>2017-04-16 10:16:35 +0000
commit272d89adac1ff17d318139484b9aa0dc4d2f55ef (patch)
treef53c0a4a22541e1fc2e407ab6ecf851e0efd96d4 /usr.sbin/tftp-proxy
parentRemove /etc/ssl/acme/. We don't need it now that we have a default acme-conf(5) (diff)
downloadwireguard-openbsd-272d89adac1ff17d318139484b9aa0dc4d2f55ef.tar.xz
wireguard-openbsd-272d89adac1ff17d318139484b9aa0dc4d2f55ef.zip
Different compilers and versions of compilers have different warnings.
Remove -Werror to give code a greater chance of building. ok deraadt@ florian@
Diffstat (limited to 'usr.sbin/tftp-proxy')
-rw-r--r--usr.sbin/tftp-proxy/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tftp-proxy/Makefile b/usr.sbin/tftp-proxy/Makefile
index 929696ecdcd..4760ab93647 100644
--- a/usr.sbin/tftp-proxy/Makefile
+++ b/usr.sbin/tftp-proxy/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 2012/09/12 09:19:54 haesbaert Exp $
+# $OpenBSD: Makefile,v 1.5 2017/04/16 10:16:35 jsg Exp $
PROG= tftp-proxy
SRCS= tftp-proxy.c filter.c
@@ -6,7 +6,7 @@ MAN= tftp-proxy.8
LDADD= -levent
DPADD= ${LIBEVENT}
-CFLAGS+=-Wall -Werror
+CFLAGS+=-Wall
CDIAGFLAGS=
.include <bsd.prog.mk>