From ebf357c00c505d1406f65ab9438e4fecfc1a2200 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Thu, 18 Sep 2008 10:14:53 +0000
Subject: [PATCH] These changes are separating the current delivery into an "Install Layout" (the binaries) and an "Instance Layout" (the user data).
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Configuration.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Configuration.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Configuration.java
index ff7c6de..18de8db 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Configuration.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Configuration.java
@@ -240,10 +240,10 @@
if (pathFile.isAbsolute()) {
fullDbPath = pathFile;
} else {
- fullDbPath = new File(install.getRootDirectory(), path);
+ fullDbPath = new File(install.getInstanceDirectory(), path);
}
- if (!Utils.isDescendant(fullDbPath, install.getRootDirectory())) {
+ if (!Utils.isDescendant(fullDbPath, install.getInstanceDirectory())) {
outsidePaths.add(Utils.getPath(fullDbPath));
}
}
--
Gitblit v1.10.0