diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/configparser.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp index 51b248133..60770d16d 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -367,13 +367,8 @@ void ParseStack::DoReadFile(const std::string& key, const std::string& name, int bool ParseStack::ParseFile(const std::string& path, int flags, const std::string& mandatory_tag, bool isexec) { ServerInstance->Logs->Log("CONFIG", LOG_DEBUG, "Reading (isexec=%d) %s", isexec, path.c_str()); - for (unsigned int t = 0; t < reading.size(); t++) - { - if (path == reading[t]) - { - throw CoreException((isexec ? "Executable " : "File ") + path + " is included recursively (looped inclusion)"); - } - } + if (std::find(reading.begin(), reading.end(), path) != reading.end()) + throw CoreException((isexec ? "Executable " : "File ") + path + " is included recursively (looped inclusion)"); /* It's not already included, add it to the list of files we've loaded */ |