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

package topology

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 ""
}