From 5fb64ebe505ef82c61fd0f38e5454234cc714de1 Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Wed, 20 Sep 2006 19:11:57 +0000 Subject: [PATCH] ITS#4654, I've been running with this patch in place for several weeks. --- CHANGES | 1 + servers/slapd/backend.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 171ada963e..59105ab9c9 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,7 @@ OpenLDAP 2.3.28 Engineering Fixed libldap ldap.conf max line length (ITS#4669) Added ldapsearch bad filter pattern check (ITS#4647) Fixed slapd-monitor locking with scope "subordinate" (ITS#4668) + Fixed slapd global access controls initialization (ITS#4654) OpenLDAP 2.3.27 Release Fixed libldap dangling pointer issue (previous fix was broken) (ITS#4405) diff --git a/servers/slapd/backend.c b/servers/slapd/backend.c index 9bfec4a583..bad3fccaa8 100644 --- a/servers/slapd/backend.c +++ b/servers/slapd/backend.c @@ -248,7 +248,8 @@ int backend_startup(Backend *be) return rc; } } - + /* append global access controls */ + acl_append( &be->be_acl, frontendDB->be_acl, -1 ); return backend_startup_one( be ); } -- 2.39.5