You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by rg...@apache.org on 2009/11/06 23:37:14 UTC

svn commit: r833587 - in /commons/proper/vfs/branches/VFS281: core/src/main/java/org/apache/commons/vfs/provider/http/HttpFileObject.java xdocs/changes.xml

Author: rgoers
Date: Fri Nov  6 22:37:14 2009
New Revision: 833587

URL: http://svn.apache.org/viewvc?rev=833587&view=rev
Log:
Apply patch for VFS-269

Modified:
    commons/proper/vfs/branches/VFS281/core/src/main/java/org/apache/commons/vfs/provider/http/HttpFileObject.java
    commons/proper/vfs/branches/VFS281/xdocs/changes.xml

Modified: commons/proper/vfs/branches/VFS281/core/src/main/java/org/apache/commons/vfs/provider/http/HttpFileObject.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/branches/VFS281/core/src/main/java/org/apache/commons/vfs/provider/http/HttpFileObject.java?rev=833587&r1=833586&r2=833587&view=diff
==============================================================================
--- commons/proper/vfs/branches/VFS281/core/src/main/java/org/apache/commons/vfs/provider/http/HttpFileObject.java (original)
+++ commons/proper/vfs/branches/VFS281/core/src/main/java/org/apache/commons/vfs/provider/http/HttpFileObject.java Fri Nov  6 22:37:14 2009
@@ -114,7 +114,7 @@
             // Assume 0 content-length
             return 0;
         }
-        return Integer.parseInt(header.getValue());
+        return Long.parseLong(header.getValue());
     }
 
     /**

Modified: commons/proper/vfs/branches/VFS281/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/branches/VFS281/xdocs/changes.xml?rev=833587&r1=833586&r2=833587&view=diff
==============================================================================
--- commons/proper/vfs/branches/VFS281/xdocs/changes.xml (original)
+++ commons/proper/vfs/branches/VFS281/xdocs/changes.xml Fri Nov  6 22:37:14 2009
@@ -23,9 +23,12 @@
 
   <body>
     <release version="2.0" date="in SVN" description="">
+      <action dev="rgoers" type="fix" issue="VFS-269" due-to="Marek Zawirski">
+        HttpFileObject: unsupported content over 2GB length
+      </action>
       <action dev="rgoers" type="fix" issue="VFS-287" due-to="Mircea-Eugen Ionica">
         LocalFileName objects are not released from AbstractFileSystem.listenerMap when all listeners are removed.
-      </action>      
+      </action>
       <action dev="rgoers" type="fix" issue="VFS-216" due-to="Reetu Mutti">
         The FTP Configuration includes an option to set a timeout for the data connection, but not for the socket
         timeout. This is a problem, as idle sockets can cause your download to hang forever and never timeout.