From 39a289f9c0cfcd7f2919d8afc333006954b0cfe0 Mon Sep 17 00:00:00 2001 From: Felix Schumacher Date: Wed, 6 Aug 2008 16:43:46 +0200 Subject: [PATCH] jcifs-1.2.17 from tgz Wed Aug 15 12:47:55 EDT 2007 jcifs-1.2.17 released A try/catch that was accedentally added in a previous release has been removed. --- README.txt | 24 ++++++++++++++++++++++++ build.xml | 4 ++-- src/jcifs/smb/SmbFile.java | 4 ---- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/README.txt b/README.txt index 17bd96a..15693fc 100644 --- a/README.txt +++ b/README.txt @@ -1,3 +1,27 @@ +Wed Aug 15 12:47:55 EDT 2007 +jcifs-1.2.17 released + +A try/catch that was accedentally added in a previous release has been +removed. + +Thu Aug 2 12:00:00 EDT 2007 +jcifs-1.2.16 released + +With this release, JCIFS now supports domain-based DFS. With +domain-based DFS, clients access DFS roots under the DNS domain name +like \\example.com\dfs\foo so that users do not need to remember server +names. However, for clients to work with these DFS roots they have to +be prepared to connect to each domain controller as necessary to find +the target share and successfully authenticate. JCIFS now includes this +retry logic. JCIFS will also do something that it seems even Windows +clients do not do - if you list the shares of a domain (e.g. (new +SmbFile("smb://example.com/")).listFiles()), JCIFS will build a merged +list of all shares on all domain controllers. + +Note that these changes are fairly significant. Whenever JCIFS tries to +connect to a server this new logic is used. So if anyone notices anything +out of the ordinary please report it to the JCIFS mailaing list. + Mon Jul 16 13:26:26 EDT 2007 jcifs-1.2.15 released diff --git a/build.xml b/build.xml index bbd3cc8..78468f7 100644 --- a/build.xml +++ b/build.xml @@ -1,7 +1,7 @@ - - + + diff --git a/src/jcifs/smb/SmbFile.java b/src/jcifs/smb/SmbFile.java index 8cde3a4..a32e101 100644 --- a/src/jcifs/smb/SmbFile.java +++ b/src/jcifs/smb/SmbFile.java @@ -884,11 +884,7 @@ if (this instanceof SmbNamedPipe) { request.desiredAccess |= 0x20000; response.isExtended = true; } -try { send( request, response ); -} catch( Exception e) { - e.printStackTrace(); -} f = response.fid; attributes = response.extFileAttributes & ATTR_GET_MASK; attrExpiration = System.currentTimeMillis() + attrExpirationPeriod; -- 2.11.0