git-lfs/lfshttp/certs_dragonfly.go
Aaron LI 4e9ef08d3b Support DragonFly BSD
I've tested this patch on the latest DragonFly BSD (development version
as of 2019-09-17) and git-lfs works well.

Signed-off-by: Aaron LI <aly@aaronly.me>
2019-09-26 07:12:23 +08:00

9 lines
178 B
Go

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