0cfb890a04
Fixes: package/resiprocate/0002-rutil-OpenSSLInit-disable-use-of-legacy-OpenSSL-memo.patch:0: missing Upstream in the header (http://nightly.buildroot.org/#_additional_patch_documentation) package/resiprocate/0003-rutil-fix-typo-in-preprocessor-condition.patch:0: missing Upstream in the header (http://nightly.buildroot.org/#_additional_patch_documentation) package/resiprocate/0004-resip-stack-ssl-Security-cxx-remove-deprecated-OpenS.patch:0: missing Upstream in the header (http://nightly.buildroot.org/#_additional_patch_documentation) make: *** [Makefile:1253: check-package] Error 1 In: https://gitlab.com/buildroot.org/buildroot/-/jobs/4718833134 and while at it, we also address the same issue in patch 0001, which was currently ignored through .checkpackageignore. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
957 B
Diff
26 lines
957 B
Diff
From 53302195c339dfaa104788a50aa900a48dbff777 Mon Sep 17 00:00:00 2001
|
|
From: Andrey Semashev <andrey.semashev@gmail.com>
|
|
Date: Sat, 10 Sep 2022 12:15:06 +0200
|
|
Subject: [PATCH] rutil: fix typo in preprocessor condition
|
|
|
|
Upstream: https://github.com/resiprocate/resiprocate/commit/53302195c339dfaa104788a50aa900a48dbff777
|
|
|
|
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
|
---
|
|
rutil/ssl/OpenSSLInit.cxx | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/rutil/ssl/OpenSSLInit.cxx b/rutil/ssl/OpenSSLInit.cxx
|
|
index 65afed09fe..0d87a9f9d8 100644
|
|
--- a/rutil/ssl/OpenSSLInit.cxx
|
|
+++ b/rutil/ssl/OpenSSLInit.cxx
|
|
@@ -75,7 +75,7 @@ OpenSSLInit::OpenSSLInit()
|
|
#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER)
|
|
CRYPTO_malloc_debug_init();
|
|
CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
|
|
-#elsif (OPENSSL_VERSION_NUMBER < 0x30000000L)
|
|
+#elif (OPENSSL_VERSION_NUMBER < 0x30000000L)
|
|
CRYPTO_set_mem_debug(1);
|
|
#endif
|
|
|