mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-08 08:02:16 -05:00
Fix compile errors
This commit is contained in:
parent
c36352c173
commit
95082964fc
1 changed files with 4 additions and 2 deletions
|
|
@ -127,10 +127,12 @@ ldbm_back_search(
|
|||
if (!manageDSAit && is_entry_referral( e ) ) {
|
||||
/* entry is a referral, don't allow add */
|
||||
struct berval matched_dn;
|
||||
BVarray erefs;
|
||||
BVarray refs;
|
||||
|
||||
ber_dupbv( &matched_dn, &e->e_name );
|
||||
BVarray erefs = get_entry_referrals( be, conn, op, e );
|
||||
BVarray refs = NULL;
|
||||
erefs = get_entry_referrals( be, conn, op, e );
|
||||
refs = NULL;
|
||||
|
||||
cache_return_entry_r( &li->li_cache, e );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue