]> git.sur5r.net Git - openldap/commitdiff
append global access rules also when be != NULL in backend_startup() (ITS#4654)
authorPierangelo Masarati <ando@openldap.org>
Mon, 28 Aug 2006 13:31:16 +0000 (13:31 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 28 Aug 2006 13:31:16 +0000 (13:31 +0000)
servers/slapd/backend.c

index 65ec9a7829564fd19baaf6249d49341dca579b08..2e6d1fb1ee0b7b43d10fdd3e4a7a2394f0cde6f5 100644 (file)
@@ -248,6 +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 );
        }