changeset 6301:a933e08efd7f utf8-path tip

fix
author Alain Mazy <am@orthanc.team>
date Fri, 05 Sep 2025 16:04:19 +0200
parents bb8c961c37a6
children
files OrthancFramework/Sources/HttpServer/HttpServer.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/HttpServer.cpp	Fri Sep 05 15:28:43 2025 +0200
+++ b/OrthancFramework/Sources/HttpServer/HttpServer.cpp	Fri Sep 05 16:04:19 2025 +0200
@@ -1800,7 +1800,7 @@
       {
         // Set the trusted client certificates (for X509 mutual authentication)
         options.push_back("ssl_ca_file");
-        options.push_back(SystemToolbox::SystemToolbox::PathToUtf8(trustedClientCertificates_).c_str());
+        options.push_back(SystemToolbox::PathToUtf8(trustedClientCertificates_).c_str());
       }
       
       if (ssl_)