summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/common/options/options_ssl.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/common/options/options_ssl.go')
-rw-r--r--src/mongo/gotools/common/options/options_ssl.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/gotools/common/options/options_ssl.go b/src/mongo/gotools/common/options/options_ssl.go
index de11cf9686a..4220c6d909e 100644
--- a/src/mongo/gotools/common/options/options_ssl.go
+++ b/src/mongo/gotools/common/options/options_ssl.go
@@ -10,6 +10,7 @@ package options
func init() {
ConnectionOptFunctions = append(ConnectionOptFunctions, registerSSLOptions)
+ BuiltWithSSL = true
}
func registerSSLOptions(self *ToolOptions) error {
@@ -20,6 +21,5 @@ func registerSSLOptions(self *ToolOptions) error {
if self.enabledOptions.URI {
self.URI.AddKnownURIParameters(KnownURIOptionsSSL)
}
- BuiltWithSSL = true
return nil
}