From 0601e4d6b2440f7fb97a6700b74651dc16645c50 Mon Sep 17 00:00:00 2001 From: Samuel Kelemen Date: Fri, 1 Mar 2019 15:27:29 -0500 Subject: [PATCH] Minor: Fix broken link in comment. Ln 105: Url is dead. Adding an Archive link instead. [Archive](https://web.archive.org/web/20170105004655/http://docstore.mik.ua/orelly/linux/cgi/ch03_02.htm#ch03-35636) --- src/net/http/cgi/child.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }