From e2cb8da6406a85a6335823c50d78865f65dac893 Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Fri, 23 Feb 2007 19:42:13 +0000
Subject: [PATCH] Move access control initialization ahead of backend initialization
---
opends/src/server/org/opends/server/core/DirectoryServer.java | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/DirectoryServer.java b/opends/src/server/org/opends/server/core/DirectoryServer.java
index 28dafe7..54fcf01 100644
--- a/opends/src/server/org/opends/server/core/DirectoryServer.java
+++ b/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -1028,14 +1028,11 @@
// Initialize the group manager.
initializeGroupManager();
-
- // Initialize all the backends and their associated suffixes.
- initializeBackends();
-
-
// Initialize the access control handler.
AccessControlConfigManager.getInstance().initializeAccessControl();
+ // Initialize all the backends and their associated suffixes.
+ initializeBackends();
// Register the supported controls and supported features.
initializeSupportedControls();
--
Gitblit v1.10.0