fix ctime diff

This commit is contained in:
Doug MacEachern 2005-11-12 01:06:51 +00:00
parent 56b41b34df
commit 16fcee7b8c
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ public class FileInfo extends FileAttrs {
sb.append("Ctime........").
append(new Date(info.ctime)).
append(DIFF_SEP).
append(new Date(info.ctime)).
append(new Date(this.ctime)).
append("\n");
changed = true;
}