From a3bd16f3f3c5ff5f5669fc247221ae883ae6e213 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 2 Nov 2025 18:31:07 +0000 Subject: Allow not setting the CA file in ssl_openssl. This matches the behaviour of ssl_gnutls. --- src/configreader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/configreader.cpp') diff --git a/src/configreader.cpp b/src/configreader.cpp index ac6cd7953..b55ebf86c 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -68,7 +68,7 @@ ServerConfig::ServerPaths::ServerPaths(const std::shared_ptr& tag) std::string ServerConfig::ServerPaths::ExpandPath(const std::string& base, const std::string& fragment) { // The fragment is an absolute path, don't modify it. - if (std::filesystem::path(fragment).is_absolute()) + if (fragment.empty() || std::filesystem::path(fragment).is_absolute()) return fragment; if (!fragment.compare(0, 2, "~/", 2)) -- cgit v1.3.1-10-gc9f91