diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-04-16 10:16:36 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-04-16 10:16:36 +0000 |
commit | 1fc42647adca7a8f12903c6f04115e18bad657bf (patch) | |
tree | e69a81a540e13863c278a71a1b1c4778b013f409 /usr.bin/htpasswd | |
parent | b01c4da9faaa4b7592f048fd572034f61ce57f62 (diff) |
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.bin/htpasswd')
-rw-r--r-- | usr.bin/htpasswd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/htpasswd/Makefile b/usr.bin/htpasswd/Makefile index a73b356a0c4..e2a3b24154c 100644 --- a/usr.bin/htpasswd/Makefile +++ b/usr.bin/htpasswd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2014/03/17 12:49:13 florian Exp $ +# $OpenBSD: Makefile,v 1.2 2017/04/16 10:16:35 jsg Exp $ PROG= htpasswd SRCS= htpasswd.c MAN= htpasswd.1 -CFLAGS+= -g -W -Wall -Werror +CFLAGS+= -g -W -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare |