Differences From Artifact [bdd49f7898]:
- File
src/OFDNSResolverSettings.m
— part of check-in
[cc2c113c29]
at
2022-11-03 21:09:34
on branch trunk
— OFDNSResolverSettings: Don't assume UTF-8
Some systems even come by default with non-UTF-8 characters in those
config files. In particular, a German Windows XP uses non-UTF-8 comments
in there by default. (user: js, size: 16815) [annotate] [blame] [check-ins using] [more...]
To Artifact [1a84838633]:
- File src/OFDNSResolverSettings.m — part of check-in [0ceb5bb869] at 2022-11-06 20:20:25 on branch trunk — OFDNSResolverSettings: Use native encoding (user: js, size: 16671) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
264 265 266 267 268 269 270 |
} @catch (OFOpenItemFailedException *e) {
objc_autoreleasePoolPop(pool);
return;
}
staticHosts = [OFMutableDictionary dictionary];
| < | | 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
} @catch (OFOpenItemFailedException *e) {
objc_autoreleasePoolPop(pool);
return;
}
staticHosts = [OFMutableDictionary dictionary];
while ((line =
[file readLineWithEncoding: [OFLocale encoding]]) != nil) {
OFArray *components, *hosts;
size_t pos;
OFString *address;
pos = [line rangeOfString: @"#"].location;
if (pos != OFNotFound)
line = [line substringToIndex: pos];
|
| ︙ | ︙ | |||
366 367 368 369 370 371 372 | objc_autoreleasePoolPop(pool); return; } if (nameServers == nil) nameServers = [OFMutableArray array]; | < | | 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
objc_autoreleasePoolPop(pool);
return;
}
if (nameServers == nil)
nameServers = [OFMutableArray array];
while ((line =
[file readLineWithEncoding: [OFLocale encoding]]) != nil) {
void *pool2 = objc_autoreleasePoolPush();
size_t pos;
OFArray *components, *arguments;
OFString *option;
pos = [line indexOfCharacterFromSet: commentCharacters];
if (pos != OFNotFound)
|
| ︙ | ︙ |