ObjFW  Diff

Differences From Artifact [799d611075]:

To Artifact [0fb5ccb31f]:


90
91
92
93
94
95
96

97
98
99
100
101
102
103
{
	self = [super init];

	@try {
		_type = OFTarArchiveEntryTypeFile;
		_POSIXPermissions =
		    [[OFNumber alloc] initWithUnsignedShort: 0644];

	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}







>







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;
}