ObjFW  Check-in [ce7b92cbcf]

Overview
Comment:utils/ofhttp: Fix a wrong type
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ce7b92cbcff360d61d25bfc191bf03bb28172217c9033e15d25b5d095059ecea
User & Date: js on 2015-05-07 19:17:46
Other Links: manifest | tags
Context
2015-05-08
21:13
OFKernelEventObserver_kqueue: More error checking check-in: 92344de237 user: js tags: trunk
2015-05-07
19:17
utils/ofhttp: Fix a wrong type check-in: ce7b92cbcf user: js tags: trunk
15:31
Update config.guess, config.sub and install-sh check-in: fe8e70acc9 user: js tags: trunk
Changes

Modified utils/ofhttp/OFHTTP.m from [b1ee5836a1] to [4b90142579].

75
76
77
78
79
80
81
82

83
84
85
86
87
88
89
75
76
77
78
79
80
81

82
83
84
85
86
87
88
89







-
+







	    @"Usage: %@ -[cehHmoPq] url1 [url2 ...]\n",
	    [OFApplication programName]];

	if (full)
		[stream writeString:
		    @"\nOptions:\n"
		    @"    -c  Continue download of existing file\n"
		    @"    -e  Specify the entity\n"
		    @"    -e  Specify the file to send as entity\n"
		    @"    -h  Show this help\n"
		    @"    -H  Add a header (e.g. X-Foo:Bar)\n"
		    @"    -m  Set the method of the HTTP request\n"
		    @"    -o  Output filename\n"
		    @"    -P  Specify SOCKS5 proxy\n"
		    @"    -q  Quiet mode (no output, except errors)\n"];

275
276
277
278
279
280
281
282

283
284
285
286
287
288
289
290
291
292
293
294

295
296
297
298
299
300
301
302
275
276
277
278
279
280
281

282
283
284
285
286
287
288
289
290
291
292
293

294

295
296
297
298
299
300
301







-
+











-
+
-








-      (bool)stream: (OFHTTPResponse*)response
  didReadIntoBuffer: (void*)buffer
	     length: (size_t)length
	  exception: (OFException*)e
{
	if (e != nil) {
		OFURL *URL;
		OFString *URL;

		[_progressBar stop];
		[_progressBar draw];
		[_progressBar release];
		_progressBar = nil;

		if (!_quiet)
			[of_stdout writeString: @"\n  Error!\n"];

		URL = [_URLs objectAtIndex: _URLIndex - 1];
		[of_stderr writeFormat: @"%@: Failed to download <%@>: %@\n",
					[OFApplication programName],
					[OFApplication programName], URL, e];
					[URL string], e];

		_errorCode = 1;
		goto next;
	}

	_received += length;