diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-08-24 09:00:51 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-08-24 09:00:51 +0000 |
commit | eb32ab9851537a3e9c03eecbfa292114a4c186df (patch) | |
tree | f7ed3aa612fca878ae4cf33ce7957b96951b4c50 /usr.sbin | |
parent | 3ab09f3395303a5bf28300009503ea0a2a5e8d9a (diff) |
Disable enum warnings after checking the code is ok. ok millert@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpc.lockd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpc.lockd/Makefile b/usr.sbin/rpc.lockd/Makefile index 3b14de17419..38123e45ab4 100644 --- a/usr.sbin/rpc.lockd/Makefile +++ b/usr.sbin/rpc.lockd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2017/07/10 21:30:37 espie Exp $ +# $OpenBSD: Makefile,v 1.8 2017/08/24 09:00:50 otto Exp $ PROG = rpc.lockd SRCS = nlm_prot_svc.c lockd.c lockd_lock.c procs.c @@ -7,7 +7,7 @@ MAN = rpc.lockd.8 DPADD= ${LIBRPCSVC} LDADD= -lrpcsvc -CFLAGS+= -I. -DSYSLOG +CFLAGS+= -I. -DSYSLOG -Wno-enum-conversion CLEANFILES= nlm_prot_svc.c nlm_prot.h |