From 5d79c3d77ebbfd593bdbf1844365bd8b9aa02c23 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 4 Jan 2022 21:38:46 +0100 Subject: [PATCH] Fixed a compile error when building with the bundled TLS/SSL certificates. --- es-core/src/HttpReq.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/HttpReq.cpp b/es-core/src/HttpReq.cpp index 9c4ba55d8..ee84cd8cd 100644 --- a/es-core/src/HttpReq.cpp +++ b/es-core/src/HttpReq.cpp @@ -70,7 +70,7 @@ HttpReq::HttpReq(const std::string& url) // these latter operating systems unless the bundled file is used. curl_easy_setopt(mHandle, CURLOPT_CAINFO, ResourceManager::getInstance() - ->getResourcePath(":/certificates/curl-ca-bundle.crt") + .getResourcePath(":/certificates/curl-ca-bundle.crt") .c_str()); #endif