mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 12:39:35 -05:00
SLAPD_SCHEMA_NOT_COMPAT: add missing AttributeDescriptions
This commit is contained in:
parent
ee37a6bdea
commit
5904e0013f
3 changed files with 3 additions and 3 deletions
|
|
@ -33,7 +33,7 @@ ldbm_back_delete(
|
|||
int rc = -1;
|
||||
int manageDSAit = get_manageDSAit( op );
|
||||
#ifdef SLAPD_SCHEMA_NOT_COMPAT
|
||||
static AttributeDescription *children = NULL;
|
||||
AttributeDescription *children = slap_schema.si_ad_children;
|
||||
#else
|
||||
static const char *children = "children";
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ ldbm_back_modrdn(
|
|||
)
|
||||
{
|
||||
#ifdef SLAPD_SCHEMA_NOT_COMPAT
|
||||
static AttributeDescription *children = NULL;
|
||||
AttributeDescription *children = slap_schema.si_ad_children;
|
||||
#else
|
||||
static const char *children = "children";
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ ldbm_back_exop_passwd(
|
|||
char *dn;
|
||||
|
||||
#ifdef SLAPD_SCHEMA_NOT_COMPAT
|
||||
static AttributeDescription *entry = NULL;
|
||||
AttributeDescription *entry = slap_schema.si_ad_entry;
|
||||
#else
|
||||
static const char *entry = "entry";
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue