mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
This update includes security fixes on issues that are mentioned on upstream critical patch report. Further info: https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html#AppendixMSQL Delete upstream-merged patches Change other local-patches according upstream changes PR: 239272 Reported by: Markus Kohlmeyer <rootservice@gmail.com> Sponsored by: EuroBSDCon 2019 DevSummit
11 lines
461 B
C++
11 lines
461 B
C++
--- mysys/my_md5.cc.orig 2018-04-08 06:44:49 UTC
|
|
+++ mysys/my_md5.cc
|
|
@@ -56,7 +56,7 @@ static void my_md5_hash(unsigned char *d
|
|
int compute_md5_hash(char *digest, const char *buf, int len) {
|
|
int retval = 0;
|
|
int fips_mode = 0;
|
|
-#if !defined(HAVE_WOLFSSL)
|
|
+#if !defined(HAVE_WOLFSSL) && !defined(LIBRESSL_VERSION_NUMBER)
|
|
fips_mode = FIPS_mode();
|
|
#endif /* HAVE_WOLFSSL */
|
|
/* If fips mode is ON/STRICT restricted method calls will result into abort,
|