From owner-freebsd-bugs Fri Sep 22 3:10:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E17937B440 for ; Fri, 22 Sep 2000 03:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA55685; Fri, 22 Sep 2000 03:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 03:10:02 -0700 (PDT) Message-Id: <200009221010.DAA55685@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Philipp Mergenthaler Subject: Re: bin/21449: [PATCH] Sysinstall, installing via HTTP proxy: Fix locating the release directory; fix server name resolving Reply-To: Philipp Mergenthaler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/21449; it has been noted by GNATS. From: Philipp Mergenthaler To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/21449: [PATCH] Sysinstall, installing via HTTP proxy: Fix locating the release directory; fix server name resolving Date: Fri, 22 Sep 2000 12:03:24 +0200 After the patch in bin/21449, apply this one to change the magic release name "none" to "any", analogically to http://www.freebsd.org/cgi/cvsweb.cgi/src/release/sysinstall/ftp.c#rev1.41 --- http.c Fri Sep 22 11:45:56 2000 +++ http.c.new Fri Sep 22 11:45:32 2000 @@ -50,3 +50,3 @@ } - /* If the release is specified as "__RELEASE" or "any", then just + /* If the release is specified as "__RELEASE" or "none", then just * assume that the path the user gave is ok. @@ -57,3 +57,3 @@ */ - if (strcmp(rel, "__RELEASE") && strcmp(rel, "any")) { + if (strcmp(rel, "__RELEASE") && strcmp(rel, "none")) { sprintf(req, "%s/pub/FreeBSD/releases/"MACHINE"/%s", To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message