jcifs-1.2.24 from tgz
authorFelix Schumacher <p0354740@isib001.(none)>
Wed, 6 Aug 2008 14:48:40 +0000 (16:48 +0200)
committerFelix Schumacher <p0354740@isib001.(none)>
Wed, 6 Aug 2008 14:48:40 +0000 (16:48 +0200)
Wed Jul 23 13:35:20 EDT 2008
jcifs-1.2.24

The 2 line change that fixes stand-alond DFS was not in 1.2.23. Now it is.

README.txt
build.xml
src/jcifs/smb/SmbFile.java

index cded897..f54421d 100644 (file)
@@ -1,3 +1,8 @@
+Wed Jul 23 13:35:20 EDT 2008
+jcifs-1.2.24
+
+The 2 line change that fixes stand-alond DFS was not in 1.2.23. Now it is.
+
 Sun Jul 20 22:28:40 EDT 2008
 jcifs-1.2.23
 
index ec78884..05c1c52 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1,7 +1,7 @@
 <project name="jcifs" default="usage" basedir=".">
 
-    <property name="version" value="1.2.23"/>
-    <property name="reldate" value="Jul 21, 2008"/>
+    <property name="version" value="1.2.24"/>
+    <property name="reldate" value="Jul 23, 2008"/>
 
     <target name="usage">
         <echo>
index 3fe2650..2244e24 100644 (file)
@@ -689,6 +689,9 @@ public class SmbFile extends URLConnection implements SmbConstants {
             String dunc = unc.substring(dr.pathConsumed);
             if (dunc.equals(""))
                 dunc = "\\";
+            if (!dr.path.equals(""))
+                dunc = "\\" + dr.path + dunc;
+
             unc = dunc;
             if (request != null &&
                         request.path != null &&