Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
go1.7.6629
fix_certificates_lookup.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fix_certificates_lookup.patch of Package go1.7.6629
diff --git a/src/crypto/x509/root_unix.go b/src/crypto/x509/root_unix.go index 7bcb3d6..7755293 100644 --- a/src/crypto/x509/root_unix.go +++ b/src/crypto/x509/root_unix.go @@ -36,6 +37,8 @@ func loadSystemRoots() (*CertPool, error) { } } + rootsAdded := false + for _, directory := range certDirectories { fis, err := ioutil.ReadDir(directory) if err != nil { @@ -44,16 +47,18 @@ func loadSystemRoots() (*CertPool, error) { } continue } - rootsAdded := false for _, fi := range fis { + if fi.Mode()&os.ModeSymlink != 0 { + continue + } data, err := ioutil.ReadFile(directory + "/" + fi.Name()) if err == nil && roots.AppendCertsFromPEM(data) { rootsAdded = true } } - if rootsAdded { - return roots, nil - } + } + if rootsAdded { + return roots, nil } return nil, firstErr
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor