We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec3441a commit 37a0669Copy full SHA for 37a0669
olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp
@@ -331,13 +331,13 @@ NetworkCurl::NetworkCurl(NetworkInitializationSettings settings)
331
#endif
332
333
std::string ca_bundle_path;
334
-#ifdef OLP_SDK_NETWORK_HAS_OPENSSL
+#ifdef OLP_SDK_ENABLE_ANDROID_CURL
335
+ ca_bundle_path = kCurlAndroidCaBundleFolder;
336
+#elif OLP_SDK_NETWORK_HAS_OPENSSL
337
ca_bundle_path = CaBundlePath();
338
if (ca_bundle_path.empty()) {
339
ca_bundle_path = "<empty>";
340
}
-#else
- ca_bundle_path = "<empty>";
341
342
343
OLP_SDK_LOG_INFO_F(kLogTag,
0 commit comments