From 95c4c44445c5766546cfd45865e6a7a5d03b8941 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 13 Feb 2007 01:37:52 +0000
Subject: [PATCH] Fix a bug in the LDIFDiff tool that could cause it to miss added or deleted entries under certain conditions.  Also, add a number of test cases to cover the LDIFDiff tool.

---
 opends/src/server/org/opends/server/core/DirectoryServer.java |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/DirectoryServer.java b/opends/src/server/org/opends/server/core/DirectoryServer.java
index 831cad5..1791dba 100644
--- a/opends/src/server/org/opends/server/core/DirectoryServer.java
+++ b/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -869,6 +869,22 @@
 
 
   /**
+   * Retrieves the path to the configuration file used to initialize the
+   * Directory Server.
+   *
+   * @return  The path to the configuration file used to initialize the
+   *          Directory Server.
+   */
+  public static String getConfigFile()
+  {
+    assert debugEnter(CLASS_NAME, "getConfigFile");
+
+    return directoryServer.configFile;
+  }
+
+
+
+  /**
    * Starts up the Directory Server.  It must have already been bootstrapped
    * and cannot be running.
    *

--
Gitblit v1.10.0