From de12910fc85156632870c1b8ec808c5bd9ac9f3a Mon Sep 17 00:00:00 2001
From: davidely <davidely@localhost>
Date: Tue, 08 May 2007 08:09:58 +0000
Subject: [PATCH] Fixed a problem where OpenDS couldn't be installed on Windows in a directory with a space in it's path.  There was also a similar, but more benign problem with log messages generated from start-ds.bat and stop-ds.bat.

---
 opends/resource/bin/stop-ds.bat |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opends/resource/bin/stop-ds.bat b/opends/resource/bin/stop-ds.bat
index dbd6e98..15ecf1d 100644
--- a/opends/resource/bin/stop-ds.bat
+++ b/opends/resource/bin/stop-ds.bat
@@ -35,7 +35,7 @@
 
 set INSTANCE_ROOT=%DIR_HOME%
 
-set LOG=%INSTANCE_ROOT%\logs\native-windows.out
+set LOG="%INSTANCE_ROOT%\logs\native-windows.out"
 set SCRIPT=stop-ds.bat
 
 rem This is the template to use for logging.  Make sure to use >>

--
Gitblit v1.10.0