aboutsummaryrefslogtreecommitdiff
path: root/src/httpserver.cpp
diff options
context:
space:
mode:
authorpaveljanik <Pavel@Janik.cz>2015-09-04 19:22:48 +0200
committerpaveljanik <Pavel@Janik.cz>2015-09-04 19:22:48 +0200
commiteb3002bb7138db3aa4490b00be88779818b6da0d (patch)
treec3af65535f3ae769c3b20b30bed1ca11b65c459b /src/httpserver.cpp
parent536207f3167daad1fa3d60a1de7d9cb55db28ac9 (diff)
downloadbitcoin-eb3002bb7138db3aa4490b00be88779818b6da0d.tar.xz
[TRIVIAL] Fix typo: exactmath -> exactmatch
... but not yet in trivial tree
Diffstat (limited to 'src/httpserver.cpp')
-rw-r--r--src/httpserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp
index 7e599b1d78..baca007571 100644
--- a/src/httpserver.cpp
+++ b/src/httpserver.cpp
@@ -555,7 +555,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));
}
@@ -568,7 +568,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);
}
}