include external.h

This commit is contained in:
Kurt Zeilenga 2000-09-26 05:33:37 +00:00
parent 3c600e3a8c
commit 63df7da68e
4 changed files with 12 additions and 5 deletions

View file

@ -13,6 +13,7 @@
#include <ac/unistd.h>
#include "back-bdb.h"
#include "external.h"
int
bdb_bind(
@ -243,4 +244,4 @@ done:
/* front end with send result on success (rc==0) */
return rc;
}
}

View file

@ -11,6 +11,7 @@
#include <ac/string.h>
#include "back-bdb.h"
#include "external.h"
int
bdb_exop_passwd(

View file

@ -10,6 +10,7 @@
#include <ac/string.h>
#include "back-bdb.h"
#include "external.h"
int
bdb_referrals(

View file

@ -11,6 +11,7 @@
#include <ac/string.h>
#include "back-bdb.h"
#include "external.h"
static int base_candidate(
BackendDB *be,
@ -44,21 +45,24 @@ bdb_search(
char **attrs,
int attrsonly )
{
int abandon;
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
int abandon;
int rc;
const char *text = NULL;
time_t stoptime;
ID candidates[BDB_IDL_SIZE];
ID id, cursor;
ID candidates[BDB_IDL_SIZE];
Entry *e = NULL;
struct berval **v2refs = NULL;
Entry *matched = NULL;
char *realbase = NULL;
int nentries = 0;
int manageDSAit = get_manageDSAit( op );
int manageDSAit;
Debug(LDAP_DEBUG_TRACE, "=> ldbm_back_search\n", 0, 0, 0);
Debug( LDAP_DEBUG_TRACE, "=> bdb_back_search\n",
0, 0, 0);
manageDSAit = get_manageDSAit( op );
#ifdef BDB_ALIASES
/* get entry with reader lock */