Differences From Artifact [492c8ebbc8]:
- File
utils/ofhttp/OFHTTP.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: 25097) [annotate] [blame] [check-ins using]
To Artifact [92c2a328ea]:
- File utils/ofhttp/OFHTTP.m — part of check-in [836314f39a] at 2017-10-11 20:59:32 on branch 0.90 — Fix shadowed variables and enable -Wshadow (user: js, size: 25128) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
830 831 832 833 834 835 836 |
} else
lengthString =
OF_LOCALIZED(@"size_unknown", @"unknown");
if (_verbose) {
void *pool = objc_autoreleasePoolPush();
OFDictionary OF_GENERIC(OFString *, OFString *)
| | | > | | 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 |
} else
lengthString =
OF_LOCALIZED(@"size_unknown", @"unknown");
if (_verbose) {
void *pool = objc_autoreleasePoolPush();
OFDictionary OF_GENERIC(OFString *, OFString *)
*responseHeaders = [response headers];
OFEnumerator *keyEnumerator =
[responseHeaders keyEnumerator];
OFEnumerator *objectEnumerator =
[responseHeaders objectEnumerator];
OFString *key, *object;
[of_stdout writeString: @" "];
[of_stdout writeLine: OF_LOCALIZED(
@"info_name_unaligned",
@"Name: %[name]",
@"name", fileName)];
|
| ︙ | ︙ |