aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-05-25 16:20:21 +0200
committerWladimir J. van der Laan <[email protected]>2014-05-25 16:46:49 +0200
commit73f7153f435a2f04ecfa18cc1b1b0232120169d6 (patch)
treea8dfe43423e8799de57076cb3652ead1e9df7d95 /src/init.cpp
parentMerge pull request #4183 (diff)
parentRemove redundant c_str (diff)
downloaddiscoin-73f7153f435a2f04ecfa18cc1b1b0232120169d6.tar.xz
discoin-73f7153f435a2f04ecfa18cc1b1b0232120169d6.zip
Merge pull request #4206
79d06dc Remove redundant c_str (R E Broadley)
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 766498876..bc4924b48 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -914,7 +914,7 @@ bool AppInit2(boost::thread_group& threadGroup)
for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
{
uint256 hash = (*mi).first;
- if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
+ if (boost::algorithm::starts_with(hash.ToString(), strMatch))
{
CBlockIndex* pindex = (*mi).second;
CBlock block;