-Sun Sep 5 19:02:41 EDT 2004
+Mon Sep 6 20:44:14 EDT 2004
+jcifs-1.0.1 released
+
+The GUEST account fix broke guest access entirely for machines that
+deliberately want it. So this is the original fix but with the test
+condition corrected.
+
+Mon Sep 6 14:59:26 EDT 2004
jcifs-1.0.0 released
Other than minor changes in packaging this code is identical to 0.9.8
-released 3 days ago. From now one all development will continue in the ???
-branch so that the 1.x series remains as stable as possible.
+released 3 days ago. From now one all development will continue in the 2.0
+(?) branch so that the 1.x series remains as stable as possible.
Thu Sep 2 18:45:35 EDT 2004
jcifs-0.9.8 released
<project name="jcifs" default="usage" basedir=".">
- <property name="version" value="1.0.0"/>
+ <property name="version" value="1.0.1"/>
<property name="reldate" value="Sep 6, 2004"/>
<target name="usage">
request.auth = auth;
transport.send( request, response );
- if( response.isLoggedInAsGuest ) {
+ if( response.isLoggedInAsGuest && "GUEST".equalsIgnoreCase( auth.username ) == false ) {
throw new SmbAuthException( NtStatus.NT_STATUS_LOGON_FAILURE );
}