Author: bodewig
Date: Wed Mar 18 04:40:44 2009
New Revision: 755473
URL: http://svn.apache.org/viewvc?rev=755473&view=rev
Log:
properly set the size of directories
Modified:
ant/core/trunk/src/main/org/apache/tools/tar/TarEntry.java (contents,
props changed)
Modified: ant/core/trunk/src/main/org/apache/tools/tar/TarEntry.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/tar/TarEntry.java?rev=755473&r1=755472&r2=755473&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/tar/TarEntry.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/tar/TarEntry.java Wed Mar 18
04:40:44 2009
@@ -215,12 +215,13 @@
if (nameLength == 0 || name.charAt(nameLength - 1) != '/') {
this.name.append("/");
}
+ this.size = 0;
} else {
this.mode = DEFAULT_FILE_MODE;
this.linkFlag = LF_NORMAL;
+ this.size = file.length();
}
- this.size = file.length();
this.modTime = file.lastModified() / MILLIS_PER_SECOND;
this.devMajor = 0;
this.devMinor = 0;
Propchange: ant/core/trunk/src/main/org/apache/tools/tar/TarEntry.java
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Mar 18 04:40:44 2009
@@ -1 +1 @@
-/commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java:755227
+/commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java:755227,755472