mirror of https://github.com/golang/go.git
crypto/tls: disable root cert fetching to fix windows build
R=golang-dev CC=golang-dev https://golang.org/cl/5267044
This commit is contained in:
parent
b82a8e7c22
commit
8225f4d71f
|
|
@ -43,6 +43,9 @@ func loadStore(roots *x509.CertPool, name string) {
|
|||
}
|
||||
|
||||
func initDefaultRoots() {
|
||||
// TODO(brainman): To be fixed
|
||||
return
|
||||
|
||||
roots := x509.NewCertPool()
|
||||
|
||||
// Roots
|
||||
|
|
|
|||
Loading…
Reference in New Issue