From 6df835bb95071b3db644c90eabc33532960b2ca3 Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Wed, 24 Sep 2025 08:31:34 +0300 Subject: [PATCH] - use usual resip::Security() in macOS builds - we just doesn't need full macOS support for now --- src/engine/endpoint/EP_Engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/endpoint/EP_Engine.cpp b/src/engine/endpoint/EP_Engine.cpp index d76f9d5c..2a192213 100644 --- a/src/engine/endpoint/EP_Engine.cpp +++ b/src/engine/endpoint/EP_Engine.cpp @@ -174,7 +174,7 @@ void UserAgent::start() #if defined(TARGET_WIN) s = new resip::WinSecurity(); #elif defined(TARGET_OSX) - s = new resip::MacSecurity(); + s = new resip::Security(); #elif defined(TARGET_LINUX) s = new resip::Security("/etc/ssl/certs"); #elif defined(TARGET_ANDROID)