diff options
Diffstat (limited to 'libgo/go/crypto/x509/root_aix.go')
-rw-r--r-- | libgo/go/crypto/x509/root_aix.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libgo/go/crypto/x509/root_aix.go b/libgo/go/crypto/x509/root_aix.go index 6d42773..4d50a13 100644 --- a/libgo/go/crypto/x509/root_aix.go +++ b/libgo/go/crypto/x509/root_aix.go @@ -8,3 +8,9 @@ package x509 var certFiles = []string{ "/var/ssl/certs/ca-bundle.crt", } + +// Possible directories with certificate files; stop after successfully +// reading at least one file from a directory. +var certDirectories = []string{ + "/var/ssl/certs", +} |