From 318e165238e1f7a18650c71496118bd6ad0ff736 Mon Sep 17 00:00:00 2001 From: David Symonds Date: Fri, 20 Sep 2013 15:49:26 +1000 Subject: [PATCH] crypto/x509: update comment on system root cert locations. R=golang-dev, r CC=golang-dev https://golang.org/cl/13775045 --- src/pkg/crypto/x509/root_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/crypto/x509/root_unix.go b/src/pkg/crypto/x509/root_unix.go index 770ca66cd32..324f855b135 100644 --- a/src/pkg/crypto/x509/root_unix.go +++ b/src/pkg/crypto/x509/root_unix.go @@ -10,7 +10,7 @@ import "io/ioutil" // Possible certificate files; stop after finding one. var certFiles = []string{ - "/etc/ssl/certs/ca-certificates.crt", // Linux etc + "/etc/ssl/certs/ca-certificates.crt", // Debian/Ubuntu/Gentoo etc. "/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL "/etc/ssl/ca-bundle.pem", // OpenSUSE "/etc/ssl/cert.pem", // OpenBSD