From 186acabb92e49adad49abbe0cb63952ad0b513a9 Mon Sep 17 00:00:00 2001
From: coulbeck <coulbeck@localhost>
Date: Fri, 23 Feb 2007 20:11:10 +0000
Subject: [PATCH] This change prepares the unit tests for when the ACI handler will get enabled by default.  Most of the failing tests are fixed by adding bypass-acl privilege to the entries of the users the failing tests bind as.

---
 opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciContainer.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciContainer.java b/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
index e24e9a0..d87372f 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
@@ -221,7 +221,7 @@
      * @return The client entry.
      */
     public Entry getClientEntry() {
-       return clientConnection.getAuthenticationInfo().getAuthorizationEntry();
+      return operation.getAuthorizationEntry();
     }
 
     /**
@@ -270,7 +270,7 @@
      * @return  The client's authorization DN.
      */
     public DN getClientDN() {
-        return clientConnection.getAuthenticationInfo().getAuthorizationDN();
+      return operation.getAuthorizationDN();
     }
 
     /**

--
Gitblit v1.10.0