# HG changeset patch # User Alain Mazy # Date 1757081059 -7200 # Node ID a933e08efd7fcec5f55aad9a0d36d66b0afeeb95 # Parent bb8c961c37a695ce4be49a4431bda12d011f9336 fix diff -r bb8c961c37a6 -r a933e08efd7f OrthancFramework/Sources/HttpServer/HttpServer.cpp --- 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_)