diff options
author | 2017-01-20 11:55:08 +0000 | |
---|---|---|
committer | 2017-01-20 11:55:08 +0000 | |
commit | fdd30f56790ad4cf06b6bb997a2e0bd2132a0eee (patch) | |
tree | c94f468d9c72259e8f2822829899cdc69b17be00 /usr.sbin/ldapd/attributes.c | |
parent | Take gcc's suggestions about parenthesis around assignments used (diff) | |
download | wireguard-openbsd-fdd30f56790ad4cf06b6bb997a2e0bd2132a0eee.tar.xz wireguard-openbsd-fdd30f56790ad4cf06b6bb997a2e0bd2132a0eee.zip |
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/attributes.c')
-rw-r--r-- | usr.sbin/ldapd/attributes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ldapd/attributes.c b/usr.sbin/ldapd/attributes.c index b89c75f8d43..6fafef28d27 100644 --- a/usr.sbin/ldapd/attributes.c +++ b/usr.sbin/ldapd/attributes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: attributes.c,v 1.3 2010/10/19 09:34:41 martinh Exp $ */ +/* $OpenBSD: attributes.c,v 1.4 2017/01/20 11:55:08 benno Exp $ */ /* * Copyright (c) 2009 Martin Hedenfalk <martin@bzero.se> @@ -24,6 +24,7 @@ #include <time.h> #include "ldapd.h" +#include "log.h" struct ber_element * ldap_get_attribute(struct ber_element *entry, const char *attr) |