ObjFW  Diff

Differences From Artifact [684e137d81]:

To Artifact [e75cf57b42]:


530
531
532
533
534
535
536
537

538
539
540
541
542
543
544
545
530
531
532
533
534
535
536

537

538
539
540
541
542
543
544







-
+
-







		}

		[_host release];
		_host = [_server.host copy];
		_port = [_server port];
	}

	URI = [OFMutableURI URI];
	URI = [OFMutableURI URIWithScheme: @"http"];
	URI.scheme = @"http";
	URI.host = _host;
	if (_port != 80)
		URI.port = [OFNumber numberWithUnsignedShort: _port];

	@try {
		if ((pos = [_path rangeOfString: @"?"].location) !=
		    OFNotFound) {