ObjFW  Diff

Differences From Artifact [6cdf31afd0]:

To Artifact [205f214213]:


280
281
282
283
284
285
286
287
288


289
290
291
292
293
294
295
280
281
282
283
284
285
286


287
288
289
290
291
292
293
294
295







-
-
+
+







		 */
		line = [sock readLine];
		if (![line hasPrefix: @"HTTP/1.0 "] &&
		    ![line hasPrefix: @"HTTP/1.1 "])
			@throw [OFInvalidServerReplyException
			    newWithClass: isa];

		status = (int)[[line substringFromIndex: 9
						toIndex: 12] decimalValue];
		status = (int)[[line substringWithRange:
		    of_range(9, 3)] decimalValue];

		serverHeaders = [OFMutableDictionary dictionary];

		while ((line = [sock readLine]) != nil) {
			OFString *key, *value;
			const char *line_c = [line cString], *tmp;