Index: utils/ofhttp/OFHTTP.m ================================================================== --- utils/ofhttp/OFHTTP.m +++ utils/ofhttp/OFHTTP.m @@ -77,11 +77,11 @@ 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" @@ -277,11 +277,11 @@ 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; @@ -289,12 +289,11 @@ if (!_quiet) [of_stdout writeString: @"\n Error!\n"]; URL = [_URLs objectAtIndex: _URLIndex - 1]; [of_stderr writeFormat: @"%@: Failed to download <%@>: %@\n", - [OFApplication programName], - [URL string], e]; + [OFApplication programName], URL, e]; _errorCode = 1; goto next; }