Differences From Artifact [2af76fe94d]:
- File src/OFTarArchiveEntry.m — part of check-in [8939cbdb52] at 2023-01-06 09:04:02 on branch trunk — Update copyright (user: js, size: 9407) [annotate] [blame] [check-ins using] [more...]
To Artifact [0fb5ccb31f]:
- File src/OFTarArchiveEntry.m — part of check-in [55149a21bb] at 2024-03-09 22:06:46 on branch trunk — OFTarArchiveEntry: Add default modification date (user: js, size: 9452) [annotate] [blame] [check-ins using] [more...]
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
| ︙ | |||
90 91 92 93 94 95 96 97 98 99 100 101 102 103 | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | + |
{
self = [super init];
@try {
_type = OFTarArchiveEntryTypeFile;
_POSIXPermissions =
[[OFNumber alloc] initWithUnsignedShort: 0644];
_modificationDate = [[OFDate alloc] init];
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
|
| ︙ |