diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2017-01-20 11:55:09 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2017-01-20 11:55:09 +0000 |
commit | ed67e665e663bedff1c44076973d19135a2c7821 (patch) | |
tree | 6d735ab7139e1e591d4c47eefb7aa90c7fd9b526 /usr.sbin/ldapd/index.c | |
parent | 2a4396317124823d511608dce9ffa899d054ad46 (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 krw@ jmatthew@
Diffstat (limited to 'usr.sbin/ldapd/index.c')
-rw-r--r-- | usr.sbin/ldapd/index.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ldapd/index.c b/usr.sbin/ldapd/index.c index 8e35261827f..2f9f4db7127 100644 --- a/usr.sbin/ldapd/index.c +++ b/usr.sbin/ldapd/index.c @@ -1,4 +1,4 @@ -/* $OpenBSD: index.c,v 1.10 2015/12/24 17:47:57 mmcc Exp $ */ +/* $OpenBSD: index.c,v 1.11 2017/01/20 11:55:08 benno Exp $ */ /* * Copyright (c) 2009 Martin Hedenfalk <martin@bzero.se> @@ -79,6 +79,7 @@ #include <string.h> #include "ldapd.h" +#include "log.h" static int index_attribute(struct namespace *ns, char *attr, struct btval *dn, |