Differences From Artifact [0d0e8ff125]:
- File
utils/ofhttp/OFHTTP.m
— part of check-in
[627511b032]
at
2020-11-14 12:23:55
on branch trunk
— Rename of_malloc and of_calloc
The new names should be more accurate. (user: js, size: 29352) [annotate] [blame] [check-ins using] [more...]
To Artifact [089353e353]:
- File utils/ofhttp/OFHTTP.m — part of check-in [1e07e91324] at 2020-12-15 19:16:22 on branch trunk — ofhttp: Avoid passing nil to OF_LOCALIZED (user: js, size: 29389) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
775 776 777 778 779 780 781 |
(object = [objectEnumerator nextObject]) != nil)
[of_stdout writeFormat: @" %@: %@\n",
key, object];
objc_autoreleasePoolPop(pool);
} else if (statusCode / 100 == 2 && !_detectFileNameRequest) {
[of_stdout writeString: @" "];
| > > | | | > | 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
(object = [objectEnumerator nextObject]) != nil)
[of_stdout writeFormat: @" %@: %@\n",
key, object];
objc_autoreleasePoolPop(pool);
} else if (statusCode / 100 == 2 && !_detectFileNameRequest) {
[of_stdout writeString: @" "];
if (_currentFileName != nil)
[of_stdout writeLine: OF_LOCALIZED(@"info_name",
@"Name: %[name]",
@"name", _currentFileName)];
[of_stdout writeString: @" "];
[of_stdout writeLine: OF_LOCALIZED(@"info_type",
@"Type: %[type]",
@"type", type)];
[of_stdout writeString: @" "];
[of_stdout writeLine: OF_LOCALIZED(@"info_size",
@"Size: %[size]",
|
| ︙ | ︙ |