summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/mongo/options/clientoptions_1_9.go
blob: 385d6d36780e6434e6b795552e9f8977c05a9d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build !go1.10

package options

import (
	"crypto/x509"
)

// We don't support version less then 1.10, but Evergreen needs to be able to compile the driver
// using version 1.8.
func x509CertSubject(cert *x509.Certificate) string {
	return ""
}