From 905abe4f233d23a567b0d36bd1d25e86bc949e60 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Fri, 8 May 2020 19:11:29 +0200 Subject: Small fixes --- config.cpp | 2 +- plugins/fcgi/socket.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config.cpp b/config.cpp index a2ff24c..26af2b5 100644 --- a/config.cpp +++ b/config.cpp @@ -257,7 +257,7 @@ const Path& Config::GetPath(const Socket& socket, const std::string& requested_h if (m_host == host) { for (const auto& path: site.paths) { if (boost::starts_with(requested_path, path.requested) && - "/&\0"s.find(requested_path[path.requested.size()]) != std::string::npos && + "/?\0"s.find(requested_path[path.requested.size()]) != std::string::npos && path.requested.size() > path_len) { path_len = path.requested.size(); diff --git a/plugins/fcgi/socket.cpp b/plugins/fcgi/socket.cpp index 49a8651..228964c 100644 --- a/plugins/fcgi/socket.cpp +++ b/plugins/fcgi/socket.cpp @@ -17,7 +17,6 @@ FCGI_ID& Socket::fcgi_id() } SocketFactory::SocketFactory() - : m_io_context() { } -- cgit v1.2.3