From 3d26427c02ce238d5ce08fcee9457c717aa71a00 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Sat, 27 May 2000 23:16:30 +0000 Subject: [PATCH] SLAPD_SCHEMA_NOT_COMPAT: fix bind acls --- servers/slapd/back-ldbm/bind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/slapd/back-ldbm/bind.c b/servers/slapd/back-ldbm/bind.c index 739a358f12..e901ad54cd 100644 --- a/servers/slapd/back-ldbm/bind.c +++ b/servers/slapd/back-ldbm/bind.c @@ -41,8 +41,8 @@ ldbm_back_bind( #endif #ifdef SLAPD_SCHEMA_NOT_COMPAT - static AttributeDescription *password = NULL; - static AttributeDescription *entry = NULL; + AttributeDescription *password = slap_schema.si_ad_userPassword; + AttributeDescription *entry = slap_schema.si_ad_entry; #else static const char *password = "userpassword"; static const char *entry = "entry"; -- 2.39.5