aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar LongKB <longkb@bka.vn> 2019-02-21 14:21:25 +0700
committerGravatar Miek Gieben <miek@miek.nl> 2019-02-21 07:21:25 +0000
commitc8ba2d3ca8912c878a3b2beed6ffbb02bdcb28ac (patch)
tree73f2ca85b02c0cc221ff941893cdbc15ed32908b
parent05c0f7161b713015c7633a3fcf8a58c54b3dafbe (diff)
downloadcoredns-c8ba2d3ca8912c878a3b2beed6ffbb02bdcb28ac.tar.gz
coredns-c8ba2d3ca8912c878a3b2beed6ffbb02bdcb28ac.tar.zst
coredns-c8ba2d3ca8912c878a3b2beed6ffbb02bdcb28ac.zip
Replacing 'HTTP' by 'HTTPS' for securing links (#2591)
Currently, there are some links that we access with **HTTP**, it is redirected to **HTTPS** automatically. So this commit aims to replace **http://...** by **https://...** for security. Co-Authored-By: Nguyen Phuong An <AnNP@vn.fujitsu.com> Signed-off-by: Kim Bao Long <longkb@vn.fujitsu.com>
-rw-r--r--plugin/file/tree/less.go2
-rw-r--r--vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/file/tree/less.go b/plugin/file/tree/less.go
index 3b8340088..7421cf08d 100644
--- a/plugin/file/tree/less.go
+++ b/plugin/file/tree/less.go
@@ -10,7 +10,7 @@ import (
// >0 when a is larger than b.
// The function orders names in DNSSEC canonical order: RFC 4034s section-6.1
//
-// See http://bert-hubert.blogspot.co.uk/2015/10/how-to-do-fast-canonical-ordering-of.html
+// See https://bert-hubert.blogspot.co.uk/2015/10/how-to-do-fast-canonical-ordering-of.html
// for a blog article on this implementation, although here we still go label by label.
//
// The values of a and b are *not* lowercased before the comparison!
diff --git a/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go b/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go
index 2e8a71112..af2bcd3a6 100644
--- a/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go
+++ b/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go
@@ -334,7 +334,7 @@ func (p *TSimpleJSONProtocol) ReadFieldBegin() (string, TType, int16, error) {
p.reader.ReadByte()
name, err := p.ParseStringBody()
// simplejson is not meant to be read back into thrift
- // - see http://wiki.apache.org/thrift/ThriftUsageJava
+ // - see https://wiki.apache.org/thrift/ThriftUsageJava
// - use JSON instead
if err != nil {
return name, STOP, 0, err