ports/audio/murmur/files/patch-src_SelfSignedCertificate.cpp
Muhammad Moinur Rahman 761e1abcc6 audio/murmur: Fix build with OpenSSL 3
- Refresh patches

Approved by:	portmgr (blanket)
2023-06-11 21:16:22 +02:00

15 lines
436 B
C++

--- src/SelfSignedCertificate.cpp.orig 2023-06-11 17:43:07 UTC
+++ src/SelfSignedCertificate.cpp
@@ -45,10 +45,12 @@ bool SelfSignedCertificate::generate(CertificateType c
QString commonName;
bool isServerCert = certificateType == CertificateTypeServerCertificate;
+#ifdef CRYPTO_MEM_CHECK_ON
if (CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON) == -1) {
ok = false;
goto out;
}
+#endif
x509 = X509_new();
if (x509 == NULL) {