This commit is contained in:
parent
8cfdfd0af0
commit
2fa9f5c249
30 changed files with 148 additions and 229 deletions
|
|
@ -171,7 +171,7 @@ std::list<std::string> ConfigMgr::GetKeysByString(std::string const& name)
|
|||
{
|
||||
std::string temp = key_name.c_str();
|
||||
|
||||
if (!temp.find(name))
|
||||
if (temp.find(name) != std::string::npos)
|
||||
keys.push_back(temp);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue