| Summary: | [PATCH] Sysinstall, installing via HTTP proxy: Fix locating the release directory; fix server name resolving | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | Philipp Mergenthaler <p> | ||||
| Component: | bin | Assignee: | jkh | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | 5.0-CURRENT | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Philipp Mergenthaler
2000-09-21 14:50:03 UTC
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", Oops, the last patch is reversed. Sorry. Responsible Changed From-To: freebsd-bugs->murray Over to sysinstall maintainer. State Changed From-To: open->closed Applied to -current and -stable and closed, thanks! Responsible Changed From-To: murray->jkh I fixed it. :) |