Merge pull request #3837 from liweitianux/support-dragonflybsd

Support DragonFly BSD
This commit is contained in:
brian m. carlson 2019-09-26 20:07:54 +00:00 committed by GitHub
commit 211c6f8a21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,8 @@
package lfshttp
import "crypto/x509"
func appendRootCAsForHostFromPlatform(pool *x509.CertPool, host string) *x509.CertPool {
// Do nothing, use golang default
return pool
}