ObjFW  Diff

Differences From Artifact [b33d383c3b]:

To Artifact [c006f7c54d]:


59
60
61
62
63
64
65
66

67
68
69
70
71

72
73
59
60
61
62
63
64
65

66

67
68
69

70
71
72







-
+
-



-
+


	[_response release];

	[super dealloc];
}

- (OFString *)description
{
	const char *method =
	const char *method = of_http_request_method_to_string(_request.method);
	    of_http_request_method_to_string([_request method]);

	return [OFString stringWithFormat:
	    @"An HTTP %s request with URL %@ failed with code %d!", method,
	    [_request URL], [_response statusCode]];
	    _request.URL, _response.statusCode];
}
@end