Skip to content

Commit 1d133d9

Browse files
committed
Merge pull request #6640
eb3002b [TRIVIAL] Fix typo: exactmath -> exactmatch (paveljanik)
2 parents 6f6fb18 + eb3002b commit 1d133d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/httpserver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ HTTPRequest::RequestMethod HTTPRequest::GetRequestMethod()
555555

556556
void RegisterHTTPHandler(const std::string &prefix, bool exactMatch, const HTTPRequestHandler &handler)
557557
{
558-
LogPrint("http", "Registering HTTP handler for %s (exactmath %d)\n", prefix, exactMatch);
558+
LogPrint("http", "Registering HTTP handler for %s (exactmatch %d)\n", prefix, exactMatch);
559559
pathHandlers.push_back(HTTPPathHandler(prefix, exactMatch, handler));
560560
}
561561

@@ -568,7 +568,7 @@ void UnregisterHTTPHandler(const std::string &prefix, bool exactMatch)
568568
break;
569569
if (i != iend)
570570
{
571-
LogPrint("http", "Unregistering HTTP handler for %s (exactmath %d)\n", prefix, exactMatch);
571+
LogPrint("http", "Unregistering HTTP handler for %s (exactmatch %d)\n", prefix, exactMatch);
572572
pathHandlers.erase(i);
573573
}
574574
}

0 commit comments

Comments
 (0)