diff options
author | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-06-23 12:40:20 +0000 |
---|---|---|
committer | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-06-23 12:40:20 +0000 |
commit | ca47978ad0b6c13934c682fa567fe3b85397edae (patch) | |
tree | 63400bd5ddb5bf1623576f6249278c18a0dcab1c /usr.sbin/ldapd/ldape.c | |
parent | 6b04870e7bab23b08e929845e4be85113526909d (diff) |
Remove compaction and indexing from ldapd. It is better done by a separate
process now that the btree can pick up the changes automatically.
Diffstat (limited to 'usr.sbin/ldapd/ldape.c')
-rw-r--r-- | usr.sbin/ldapd/ldape.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/ldape.c b/usr.sbin/ldapd/ldape.c index 912255191f6..a3bcdd50c06 100644 --- a/usr.sbin/ldapd/ldape.c +++ b/usr.sbin/ldapd/ldape.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ldape.c,v 1.5 2010/06/15 15:12:54 martinh Exp $ */ +/* $OpenBSD: ldape.c,v 1.6 2010/06/23 12:40:19 martinh Exp $ */ /* * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se> @@ -58,7 +58,6 @@ ldape_sig_handler(int sig, short why, void *data) pid = waitpid(WAIT_ANY, &status, WNOHANG); if (pid <= 0) break; - check_compaction(pid, status); } return; } |