ObjFW  Check-in [d755a2d6ca]

Overview
Comment:OFMutableTarArchiveEntry: Fix typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d755a2d6ca8eb7db8f3a56978fa7921acbb249f87617ff1755af0e871411915a
User & Date: js on 2017-08-05 21:14:58
Other Links: manifest | tags
Context
2017-08-05
21:39
ofzip: Support for creating / appending tar files check-in: ddfb995c90 user: js tags: trunk
21:14
OFMutableTarArchiveEntry: Fix typo check-in: d755a2d6ca user: js tags: trunk
18:08
ofzip: Delete incomplete files in create mode check-in: bd0957cdee user: js tags: trunk
Changes

Modified src/OFMutableTarArchiveEntry.m from [f430c94c33] to [18a5b3f559].

44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
}

- (void)setSize: (uint64_t)size
{
	_size = size;
}

- (void)setDate: (OFDate *)modificationDate
{
	OFDate *old = _modificationDate;
	_modificationDate = [modificationDate retain];
	[old release];
}

- (void)setType: (of_tar_archive_entry_type_t)type







|







44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
}

- (void)setSize: (uint64_t)size
{
	_size = size;
}

- (void)setModificationDate: (OFDate *)modificationDate
{
	OFDate *old = _modificationDate;
	_modificationDate = [modificationDate retain];
	[old release];
}

- (void)setType: (of_tar_archive_entry_type_t)type