63a218a458
Need to mv to latest released and supported version of logrus switch github.com/Sirupsen/logrus github.com/sirupsen/logrus Also vendor in latest containers/storage and containers/image Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
14 lines
250 B
Go
14 lines
250 B
Go
// +build !go1.7
|
|
|
|
package tlsconfig
|
|
|
|
import (
|
|
"crypto/x509"
|
|
|
|
)
|
|
|
|
// SystemCertPool returns an new empty cert pool,
|
|
// accessing system cert pool is supported in go 1.7
|
|
func SystemCertPool() (*x509.CertPool, error) {
|
|
return x509.NewCertPool(), nil
|
|
}
|