Differences From Artifact [d96ec8b8b5]:
- File utils/ofzip/GZIPArchive.m — part of check-in [289f2b1272] at 2017-06-05 21:57:38 on branch trunk — OFFileManager: Don't use stat() on MorphOS (user: js, size: 3531) [annotate] [blame] [check-ins using]
To Artifact [081b9cc60a]:
- File
utils/ofzip/GZIPArchive.m
— part of check-in
[23e57c5040]
at
2017-07-22 23:04:35
on branch trunk
— OFFile: Simplify mode
This removes "b" for binary and always uses binary, as there is no good
reason to not use binary. (user: js, size: 3530) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
100 101 102 103 104 105 106 | @"file", fileName)]; if (![app shouldExtractFile: fileName outFileName: fileName]) return; output = [OFFile fileWithPath: fileName | | | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | @"file", fileName)]; if (![app shouldExtractFile: fileName outFileName: fileName]) return; output = [OFFile fileWithPath: fileName mode: @"w"]; setPermissions(fileName, app->_archivePath); while (![_stream isAtEndOfStream]) { ssize_t length = [app copyBlockFromStream: _stream toStream: output fileName: fileName]; |
︙ | ︙ |