SLAPD_SCHEMA_NOT_COMPAT: add missing AttributeDescriptions

This commit is contained in:
Kurt Zeilenga 2000-05-28 01:36:03 +00:00
parent ee37a6bdea
commit 5904e0013f
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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