ObjFW  Check-in [a820714178]

Overview
Comment:Merge trunk into 1.0 branch
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0
Files: files | file ages | folders
SHA3-256: a820714178fbfa4deeafbc40ac0977bd0b3197d2aa5ec1319ee41cdfb0c8a57e
User & Date: js on 2023-10-08 08:05:11
Other Links: branch diff | manifest | tags
Context
2023-10-08
11:49
Merge trunk into 1.0 branch check-in: 9c61e5d7b7 user: js tags: 1.0
08:05
Merge trunk into 1.0 branch check-in: a820714178 user: js tags: 1.0
08:03
ofhttp: Fix missing comma that caused a crash check-in: b21bacd5fd user: js tags: trunk
07:41
Merge trunk into 1.0 branch check-in: 05ccd59b38 user: js tags: 1.0
Changes

Modified utils/ofhttp/OFHTTP.m from [02af79d7f6] to [872ae0262a].

480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
			[self setProxy: optionsParser.argument];
			break;
		case ':':
			if (optionsParser.lastLongOption != nil)
				[OFStdErr writeLine:
				    OF_LOCALIZED(@"long_argument_missing",
				    @"%[prog]: Argument for option --%[opt] "
				    @"missing"
				    @"prog", [OFApplication programName],
				    @"opt", optionsParser.lastLongOption)];
			else {
				OFString *optStr = [OFString
				    stringWithFormat: @"%C",
				    optionsParser.lastOption];
				[OFStdErr writeLine:







|







480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
			[self setProxy: optionsParser.argument];
			break;
		case ':':
			if (optionsParser.lastLongOption != nil)
				[OFStdErr writeLine:
				    OF_LOCALIZED(@"long_argument_missing",
				    @"%[prog]: Argument for option --%[opt] "
				    @"missing",
				    @"prog", [OFApplication programName],
				    @"opt", optionsParser.lastLongOption)];
			else {
				OFString *optStr = [OFString
				    stringWithFormat: @"%C",
				    optionsParser.lastOption];
				[OFStdErr writeLine: