diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-09-02 14:02:49 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-09-02 14:02:49 +0000 |
commit | b0ca0a43da43229e0470a9bd59ccccfb8bfd30c3 (patch) | |
tree | 72454bb1584fcf758816dbecb65ab38a12ade05d /usr.sbin/ospfctl | |
parent | aa3b6762016a886f814101479e2d0dead65f7415 (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.
ok claudio@, feedback from henning@, deraadt@, reyk@
Diffstat (limited to 'usr.sbin/ospfctl')
-rw-r--r-- | usr.sbin/ospfctl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfctl/Makefile b/usr.sbin/ospfctl/Makefile index f713544c012..cfd5e4ccb71 100644 --- a/usr.sbin/ospfctl/Makefile +++ b/usr.sbin/ospfctl/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 2010/05/26 16:44:32 nicm Exp $ +# $OpenBSD: Makefile,v 1.5 2016/09/02 14:02:48 benno Exp $ .PATH: ${.CURDIR}/../ospfd PROG= ospfctl -SRCS= log.c ospfctl.c parser.c +SRCS= logmsg.c ospfctl.c parser.c CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual |