From 17694e4bcf29904d2bdb6159ad5c40e17383ab6d Mon Sep 17 00:00:00 2001 From: paveljanik Date: Fri, 4 Sep 2015 19:22:48 +0200 Subject: [PATCH] [TRIVIAL] Fix typo: exactmath -> exactmatch ... but not yet in trivial tree --- src/httpserver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/httpserver.cpp b/src/httpserver.cpp index c04c9da56..4215a0f26 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -578,7 +578,7 @@ HTTPRequest::RequestMethod HTTPRequest::GetRequestMethod() void RegisterHTTPHandler(const std::string &prefix, bool exactMatch, const HTTPRequestHandler &handler) { - LogPrint("http", "Registering HTTP handler for %s (exactmath %d)\n", prefix, exactMatch); + LogPrint("http", "Registering HTTP handler for %s (exactmatch %d)\n", prefix, exactMatch); pathHandlers.push_back(HTTPPathHandler(prefix, exactMatch, handler)); } @@ -591,7 +591,7 @@ void UnregisterHTTPHandler(const std::string &prefix, bool exactMatch) break; if (i != iend) { - LogPrint("http", "Unregistering HTTP handler for %s (exactmath %d)\n", prefix, exactMatch); + LogPrint("http", "Unregistering HTTP handler for %s (exactmatch %d)\n", prefix, exactMatch); pathHandlers.erase(i); } }