ObjFW  Check-in [b21bacd5fd]

Overview
Comment:ofhttp: Fix missing comma that caused a crash
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b21bacd5fdea72f41c5b6066c4ad10fec5a3252b9d51768293dcfc2b9013e53a
User & Date: js on 2023-10-08 08:03:50
Other Links: manifest | tags
Context
2023-10-08
08:18
utils: Minor style fix check-in: c626b708a4 user: js tags: trunk
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
2023-10-02
22:38
README.md: Remove paragraph about opening the repo check-in: 0dc8f1b5cd user: js tags: trunk
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: