aboutsummaryrefslogtreecommitdiff
path: root/src/httprpc.cpp
diff options
context:
space:
mode:
authorAlin Rus <alin@fsck.ro>2018-01-11 21:40:51 +0100
committerAlin Rus <alin@fsck.ro>2018-01-11 21:40:51 +0100
commita73aab7cd8343d795b1a7408bd71f522262ac76e (patch)
tree3e269a8f345cdd4ae3de43b277a11255295aa2ca /src/httprpc.cpp
parent1d2eaba300bc13c556e3cb05420dcc91ae12e1d0 (diff)
downloadbitcoin-a73aab7cd8343d795b1a7408bd71f522262ac76e.tar.xz
Use the character based overload for std::string::find.
std::string::find has a character based overload as can be seen here (4th oveload): http://www.cplusplus.com/reference/string/string/find/ Use that instead of constantly allocating temporary strings.
Diffstat (limited to 'src/httprpc.cpp')
-rw-r--r--src/httprpc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp
index 66f7a6a718..5e9e419744 100644
--- a/src/httprpc.cpp
+++ b/src/httprpc.cpp
@@ -85,11 +85,11 @@ static void JSONErrorReply(HTTPRequest* req, const UniValue& objError, const Uni
//entries from config file.
static bool multiUserAuthorized(std::string strUserPass)
{
- if (strUserPass.find(":") == std::string::npos) {
+ if (strUserPass.find(':') == std::string::npos) {
return false;
}
- std::string strUser = strUserPass.substr(0, strUserPass.find(":"));
- std::string strPass = strUserPass.substr(strUserPass.find(":") + 1);
+ std::string strUser = strUserPass.substr(0, strUserPass.find(':'));
+ std::string strPass = strUserPass.substr(strUserPass.find(':') + 1);
for (const std::string& strRPCAuth : gArgs.GetArgs("-rpcauth")) {
//Search for multi-user login/pass "rpcauth" from config
@@ -132,8 +132,8 @@ static bool RPCAuthorized(const std::string& strAuth, std::string& strAuthUserna
boost::trim(strUserPass64);
std::string strUserPass = DecodeBase64(strUserPass64);
- if (strUserPass.find(":") != std::string::npos)
- strAuthUsernameOut = strUserPass.substr(0, strUserPass.find(":"));
+ if (strUserPass.find(':') != std::string::npos)
+ strAuthUsernameOut = strUserPass.substr(0, strUserPass.find(':'));
//Check if authorized under single-user field
if (TimingResistantEqual(strUserPass, strRPCUserColonPass)) {