aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/cgi
diff options
context:
space:
mode:
authorSamuel Kelemen <SCKelemen@users.noreply.github.com>2019-03-01 22:42:58 +0000
committerBryan C. Mills <bcmills@google.com>2019-03-02 01:34:38 +0000
commitc05f2b4869e6ac581e85638f9dc3dba16d9ba2f4 (patch)
tree940918776f6190c88fcc73f643da88ae5110b089 /src/net/http/cgi
parent249f5d2af4e14a087c462596f142064529609c3b (diff)
downloadgo-c05f2b4869e6ac581e85638f9dc3dba16d9ba2f4.tar.xz
net/http: update net/http package to replace a broken link with an archive link
replaces broken link with a web.archive.org link. Change-Id: I438536a6ac51d837c30be5df7d3d0caadf65bb95 GitHub-Last-Rev: 0601e4d6b2440f7fb97a6700b74651dc16645c50 GitHub-Pull-Request: golang/go#30523 Reviewed-on: https://go-review.googlesource.com/c/164761 Reviewed-by: Bryan C. Mills <bcmills@google.com>
Diffstat (limited to 'src/net/http/cgi')
-rw-r--r--src/net/http/cgi/child.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/cgi/child.go b/src/net/http/cgi/child.go
index 10325c2eb5..cb140f8f2f 100644
--- a/src/net/http/cgi/child.go
+++ b/src/net/http/cgi/child.go
@@ -102,7 +102,7 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {
}
// There's apparently a de-facto standard for this.
- // https://docstore.mik.ua/orelly/linux/cgi/ch03_02.htm#ch03-35636
+ // https://web.archive.org/web/20170105004655/http://docstore.mik.ua/orelly/linux/cgi/ch03_02.htm#ch03-35636
if s := params["HTTPS"]; s == "on" || s == "ON" || s == "1" {
r.TLS = &tls.ConnectionState{HandshakeComplete: true}
}