diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-11-12 01:14:42 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-11-12 01:14:42 +0000 |
commit | 1af61169269325a8703f15fe704b911bf9a2892b (patch) | |
tree | 9a1e0d1f082bd986f7b7a348aa8c6a5a5de77d0a /usr.bin/rdist/Makefile | |
parent | 439a2e177c7fc7552c89d2d52714439665db3dc6 (diff) |
Fix various format string issues. Stop assuming time_t is long or smaller.
Enable warnings.
ok krw@, ian@
Diffstat (limited to 'usr.bin/rdist/Makefile')
-rw-r--r-- | usr.bin/rdist/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rdist/Makefile b/usr.bin/rdist/Makefile index 98f0126822b..94e53be7a8c 100644 --- a/usr.bin/rdist/Makefile +++ b/usr.bin/rdist/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2004/01/05 02:55:28 espie Exp $ +# $OpenBSD: Makefile,v 1.16 2012/11/12 01:14:41 guenther Exp $ PROG= rdist @@ -6,6 +6,7 @@ CFLAGS+=-I. -I${.CURDIR} -DOS_H=\"os-openbsd.h\" SRCS= gram.y child.c client.c common.c distopt.c docmd.c expand.c \ isexec.c lookup.c message.c rdist.c CLEANFILES+=gram.c y.tab.h +WARNINGS=yes .include <bsd.prog.mk> |