ObjFW  Check-in [1d81eaca70]

Overview
Comment:utils/ofhttp: Fix a very nasty typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1d81eaca70a6c3bc736ee9854fab55be9558e626a2849c4d092ec8b9b9d71f7b
User & Date: js on 2015-06-08 23:19:14
Other Links: manifest | tags
Context
2015-06-12
23:59
Add support for and use the new ObjC generics check-in: 5329fe7c1a user: js tags: trunk
2015-06-08
23:19
utils/ofhttp: Fix a very nasty typo check-in: 1d81eaca70 user: js tags: trunk
2015-06-01
18:27
OFKernelEventObserver_select: Small Win64 fix check-in: 734fbbb144 user: js tags: trunk
Changes

Modified utils/ofhttp/OFHTTP.m from [36dd0a09a7] to [3efdc075b3].

201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
		[OFApplication terminateWithStatus: 1];
	}
}

- (void)applicationDidFinishLaunching
{
	OFOptionsParser *optionsParser =
	    [OFOptionsParser parserWithOptions: @"bc:hH:m:o:OP:qv"];
	of_unichar_t option;

	while ((option = [optionsParser nextOption]) != '\0') {
		switch (option) {
		case 'b':
			[self setBody: [optionsParser argument]];
			break;







|







201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
		[OFApplication terminateWithStatus: 1];
	}
}

- (void)applicationDidFinishLaunching
{
	OFOptionsParser *optionsParser =
	    [OFOptionsParser parserWithOptions: @"b:chH:m:o:OP:qv"];
	of_unichar_t option;

	while ((option = [optionsParser nextOption]) != '\0') {
		switch (option) {
		case 'b':
			[self setBody: [optionsParser argument]];
			break;