40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
diff --git a/common/db/openssl/openssl.go b/common/db/openssl/openssl.go
|
|
index a3474e5..f36d949 100644
|
|
--- a/common/db/openssl/openssl.go
|
|
+++ b/common/db/openssl/openssl.go
|
|
@@ -16,7 +16,7 @@ import (
|
|
"github.com/mongodb/mongo-tools/common/log"
|
|
"github.com/mongodb/mongo-tools/common/options"
|
|
"github.com/mongodb/mongo-tools/common/util"
|
|
- "github.com/spacemonkeygo/openssl"
|
|
+ "github.com/10gen/openssl"
|
|
"gopkg.in/mgo.v2"
|
|
)
|
|
|
|
diff --git a/common/db/openssl/openssl_fips.go b/common/db/openssl/openssl_fips.go
|
|
index 0d92d94..6875b46 100644
|
|
--- a/common/db/openssl/openssl_fips.go
|
|
+++ b/common/db/openssl/openssl_fips.go
|
|
@@ -9,7 +9,7 @@
|
|
|
|
package openssl
|
|
|
|
-import "github.com/spacemonkeygo/openssl"
|
|
+import "github.com/10gen/openssl"
|
|
|
|
func init() { sslInitializationFunctions = append(sslInitializationFunctions, SetUpFIPSMode) }
|
|
|
|
diff --git a/common/options/options_ssl.go b/common/options/options_ssl.go
|
|
index 0035501..e65f7e8 100644
|
|
--- a/common/options/options_ssl.go
|
|
+++ b/common/options/options_ssl.go
|
|
@@ -8,7 +8,7 @@
|
|
|
|
package options
|
|
|
|
-import "github.com/spacemonkeygo/openssl"
|
|
+import "github.com/10gen/openssl"
|
|
|
|
func init() {
|
|
ConnectionOptFunctions = append(ConnectionOptFunctions, registerSSLOptions)
|