From 93551862a18965bcee0c883c54807e8726e2f50f Mon Sep 17 00:00:00 2001 From: Ben Woosley Date: Wed, 12 Feb 2020 12:28:26 -0500 Subject: [PATCH] Replace use of boost::trim use with locale-independent TrimString --- src/httprpc.cpp | 6 +++--- test/lint/lint-locale-dependence.sh | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/httprpc.cpp b/src/httprpc.cpp index e11e4acb5c2..9ae592be792 100644 --- a/src/httprpc.cpp +++ b/src/httprpc.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -22,7 +23,7 @@ #include #include -#include // boost::trim +#include /** WWW-Authenticate to present with 401 Unauthorized response */ static const char* WWW_AUTH_HEADER_DATA = "Basic realm=\"jsonrpc\""; @@ -130,8 +131,7 @@ static bool RPCAuthorized(const std::string& strAuth, std::string& strAuthUserna return false; if (strAuth.substr(0, 6) != "Basic ") return false; - std::string strUserPass64 = strAuth.substr(6); - boost::trim(strUserPass64); + std::string strUserPass64 = TrimString(strAuth.substr(6)); std::string strUserPass = DecodeBase64(strUserPass64); if (strUserPass.find(':') != std::string::npos) diff --git a/test/lint/lint-locale-dependence.sh b/test/lint/lint-locale-dependence.sh index 737d35a397e..3ac2d109598 100755 --- a/test/lint/lint-locale-dependence.sh +++ b/test/lint/lint-locale-dependence.sh @@ -42,7 +42,6 @@ KNOWN_VIOLATIONS=( "src/bitcoin-tx.cpp.*trim_right" "src/dbwrapper.cpp.*stoul" "src/dbwrapper.cpp:.*vsnprintf" - "src/httprpc.cpp.*trim" "src/node/blockstorage.cpp:.*atoi" "src/qt/rpcconsole.cpp:.*atoi" "src/rest.cpp:.*strtol"