0003-rutil-fix-typo-in-preprocessor-condition.patch 957 B

12345678910111213141516171819202122232425
  1. From 53302195c339dfaa104788a50aa900a48dbff777 Mon Sep 17 00:00:00 2001
  2. From: Andrey Semashev <andrey.semashev@gmail.com>
  3. Date: Sat, 10 Sep 2022 12:15:06 +0200
  4. Subject: [PATCH] rutil: fix typo in preprocessor condition
  5. Upstream: https://github.com/resiprocate/resiprocate/commit/53302195c339dfaa104788a50aa900a48dbff777
  6. Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
  7. ---
  8. rutil/ssl/OpenSSLInit.cxx | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. diff --git a/rutil/ssl/OpenSSLInit.cxx b/rutil/ssl/OpenSSLInit.cxx
  11. index 65afed09fe..0d87a9f9d8 100644
  12. --- a/rutil/ssl/OpenSSLInit.cxx
  13. +++ b/rutil/ssl/OpenSSLInit.cxx
  14. @@ -75,7 +75,7 @@ OpenSSLInit::OpenSSLInit()
  15. #if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER)
  16. CRYPTO_malloc_debug_init();
  17. CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
  18. -#elsif (OPENSSL_VERSION_NUMBER < 0x30000000L)
  19. +#elif (OPENSSL_VERSION_NUMBER < 0x30000000L)
  20. CRYPTO_set_mem_debug(1);
  21. #endif