diff options
Diffstat (limited to 'community/mongodb-tools/libressl.patch')
-rw-r--r-- | community/mongodb-tools/libressl.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/mongodb-tools/libressl.patch b/community/mongodb-tools/libressl.patch new file mode 100644 index 0000000000..0afd28f98c --- /dev/null +++ b/community/mongodb-tools/libressl.patch @@ -0,0 +1,21 @@ +--- mongo-tools-r3.4.3.orig/vendor/src/github.com/spacemonkeygo/openssl/cert.go ++++ mongo-tools-r3.4.3/vendor/src/github.com/spacemonkeygo/openssl/cert.go +@@ -277,8 +277,8 @@ + md = C.EVP_md_null() + case EVP_MD5: + md = C.EVP_md5() +- case EVP_SHA: +- md = C.EVP_sha() ++ //case EVP_SHA: ++ // md = C.EVP_sha() + case EVP_SHA1: + md = C.EVP_sha1() + case EVP_DSS: +--- mongo-tools-r3.4.3.orig/vendor/src/github.com/spacemonkeygo/openssl/version.go ++++ mongo-tools-r3.4.3/vendor/src/github.com/spacemonkeygo/openssl/version.go +@@ -19,4 +19,4 @@ + // #include <openssl/opensslv.h> + import "C" + +-const Version string = C.OPENSSL_VERSION_TEXT ++const Version string = "LibreSSL 2.4.5" |