diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2017-01-20 12:19:19 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2017-01-20 12:19:19 +0000 |
commit | 40894ea26704129dabb61f6cd38d7923fe901def (patch) | |
tree | d5b9784ee8a87aec03681b0b732be8e9aa21a2fb /usr.sbin/ldpctl/Makefile | |
parent | b0f4f969b3aeb2539211fbdb4691aacde9d4330e (diff) |
work on making log.c similar in all daemons:
move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.
removal of log_rtmsg() aproved by claudio@
ok claudio@ krw@
Diffstat (limited to 'usr.sbin/ldpctl/Makefile')
-rw-r--r-- | usr.sbin/ldpctl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldpctl/Makefile b/usr.sbin/ldpctl/Makefile index 9e915a9bef1..0d13f29cb7b 100644 --- a/usr.sbin/ldpctl/Makefile +++ b/usr.sbin/ldpctl/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 2016/05/23 19:04:55 renato Exp $ +# $OpenBSD: Makefile,v 1.4 2017/01/20 12:19:18 benno Exp $ .PATH: ${.CURDIR}/../ldpd PROG= ldpctl -SRCS= util.c log.c ldpctl.c parser.c +SRCS= util.c log.c logmsg.c ldpctl.c parser.c CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations |