Date: Fri, 22 Sep 2000 03:10:02 -0700 (PDT) From: Philipp Mergenthaler <p@i609.hadiko.de> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/21449: [PATCH] Sysinstall, installing via HTTP proxy: Fix locating the release directory; fix server name resolving Message-ID: <200009221010.DAA55685@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/21449; it has been noted by GNATS. From: Philipp Mergenthaler <p@i609.hadiko.de> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200009221010.DAA55685>